/* /styles/terms.css */

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    margin: 40px;
    color: #222;
    padding-bottom: 100px;
}

header {
    text-align: center;
    margin-bottom: 24px;
}

h1 {
    font-size: 2em;
    margin: 0.2em 0;
}

h2 {
    font-size: 1.3em;
    border-bottom: 1px solid #ddd;
    padding-bottom: 6px;
    margin-top: 28px;
}

ul {
    margin-left: 20px;
}

a {
    color: #0645AD;
}

.muted {
    color: #666;
    font-size: 0.95em;
}

/* --- IMPORTANT DISCLAIMER BOX --- */
.important-section {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-top: 20px;
}

/* --- CONSENT BAR (Bottom Popup) --- */
#consent-bar {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ccc;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
    text-align: center;
}

#consent-bar.active {
    display: block;
}

.consent-inner {
    max-width: 600px; 
    margin: 0 auto;
}

.consent-checkbox-wrapper {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.chk-big {
    transform: scale(1.5);
    cursor: pointer;
}

.lbl-pointer {
    cursor: pointer;
}

/* --- BUTTONS --- */
.consent-btn {
    background-color: #b08a48;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.5;
    pointer-events: none;
    transition: all 0.3s;
}

.consent-btn.enabled {
    opacity: 1;
    pointer-events: auto;
}

.consent-btn:hover {
    background-color: #9a783a;
}