/* Container styles */
.mustScroll {
    max-height: 100px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
    line-height: 1.5;
    background: #fff;
}


/* Disabled button styles */
button[disabled],
input[type="button"][disabled],
input[type="submit"][disabled],
.button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Tooltip container positioning */
.terms-tooltip-container {
    position: relative;
    max-width: 100%;
    display: flex;
    justify-content: center;
    height: 30px;
}
/* Tooltip styles */
.terms-tooltip {
    display: none;
    position: absolute;
    background: #c82227;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    top: -5px; 
    margin-bottom: 5px;
    white-space: nowrap;
    z-index: 1000;
}

/* Add a small arrow to the tooltip pointing upwards */
.terms-tooltip:after {
    content: '';
    position: absolute;
    top: -10px;  
    left: 50%;
    margin-left: -5px; 
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #c82227 transparent;  
}



