body {
    font-family: sans-serif;
    margin: 0;
}

.header{
    border-bottom: 2px solid rgb(0, 0, 0);
    background-color: rgb(0, 0, 0);
    padding: 5px 10px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    height: 50px;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
    padding-left: 10px;
    color: white;               
}

.left-header{
    margin-right: auto;
    font-size: 2.5em;
    font-weight: bold;
}

.right-header{
    margin-left: auto;
    font-size: 2.5em;
    font-weight: bold;
}


.logo-link {
    text-decoration: none;
    color: rgb(255, 255, 255);
    display: inline;   
}

.logo-link:hover {
    opacity: 0.85;
}

.container {
    display: grid;
    grid-template-columns: repeat(2, 741px);
    gap: 40px;
    justify-content: center;
}



.leftbox, .rightbox {
    flex: 0 0 500px;             /* fixed width of 500px */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


.totalWrapper {
    display: flex;
    flex-shrink: 0;   
    top: 10%;           /* same top to align horizontally */
    left: 48%;   
    align-items: center;
}

.totalBox {
    width: 700px;             /* box width */
    height: 200px;             /* box width */
    padding: 20px;            /* inner spacing */
    /* border: 1px solid #333;    */
    /* border-radius: 10px;       */
    text-align: center;       /* center text */
}

.totalBox h2 {
    margin: 0 0 10px 0;       
    font-size: 3em;   
    font-weight: bold;   
}

#totalPay {
    font-size: 5em;   
}

.totalBox p {
    font-size: 2em;           
    margin: 0;
}

.userInputWrapper {
    padding-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 157px); /* 3 columns of 150px each */
    gap: 20px;                               /* spacing between boxes */
    justify-content: center;                  /* center the grid horizontally */
}

.userInputContainer{
    display: flex;
    flex-direction: column; 
    gap: 5px;      
}

.userInputContainer label {
    font-size: 0.9em;
    font-weight: bold;
    text-align: center;     
}

.userInputBox {
    height: 50x;
    padding: 8px;
    border: 2px solid #333;
    border-radius: 10px;
    text-align: center;
    font-size: 1em;
}

.optionsWrapper {
}

.optionsTable {
    width: 700px;
    height: 400px;
    border-collapse: collapse;
    font-family: sans-serif;
}

.optionsTable th,
.optionsTable td {
    border: 1px solid #ccc;
    padding: 11px 20px;
    text-align: left;
}

.optionsTable th {
    background-color: #f8f8f8;
}


.optionRow {
    cursor: pointer;
    /* transition: background-color 0.2s; */
}

.optionRow:hover {
    background-color: #e0f0ff; /* highlight on hover */
}

.optionRow.selected {
    /* background-color: #19c583;  */
    background-color: gold; 
    
}

.disclaimerWrapper{
    width: 700px;
    height: 400px;
    font-family: sans-serif;
    text-align: center;
}

.disclaimerWrapper h3 {
    margin: 0;  /* remove default top/bottom margin */
    font-size: 1.2rem; /* optional, adjust size */
}

.disclaimerWrapper ul {
    display: inline-block; /* shrink width to fit content */
    text-align: left;      /* keep bullets left-aligned inside the list */
    padding: 25px;            /* remove default padding */
    margin: -15px 0 0 0;    /* optional spacing from paragraph */
    font-weight: bold;
}

.disclaimerWrapper li {
    margin-bottom: 5px;
    line-height: 1.5;
}

.leftAdsWrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    width: 195px;
    gap: 10px;
    left: 5px;
    justify-content: center;
}


.leftAds {
    background: #eee;
    border: 1px dashed #999;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* fills the grid row */
}

.pageWrapper {
    display: flex;
    align-items: flex-start; /* align top edges of ads and container */
    gap: 20px;
    margin-top: 20px;
}

.rightAdsWrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    width: 195px;
    gap: 10px;
    right: 5px;
    justify-content: center;
}


.rightAds {
    background: #eee;
    border: 1px dashed #999;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* fills the grid row */
}









