#id-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dimmed background */
    z-index: 99998;
    overflow-y: auto;
    display: flex;
    align-items: flex-start; /* Align to top for scrolling */
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    padding: 20px;
    box-sizing: border-box;
}

.id-modal {
    background: #ffffff;
    width: 100%;
    max-width: 600px; /* Reduced width for popup feel */
    padding: 50px; /* Reduced vertical padding */
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    margin: auto; /* Vertically center if possible, otherwise scroll */
}

.id-step {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.id-warning-icon {
    font-size: 64px; /* Bigger icon */
    text-align: left;
    margin-bottom: 30px;
}

.id-step h2 {
    margin-top: 0;
    color: #0f1c3f;
    font-size: 36px; /* Larger heading */
    margin-bottom: 24px;
    text-align: left; /* Center headings */
}

/* Center text for the first warning step */
#id-step-1 {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

#id-step-1 p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.id-highlight {
    font-weight: 700;
    color: #d63031;
    font-size: 20px; /* Emphasize risk */
}

.id-btn {
    background-color: #1a2a44;
    color: white;
    border: none;
    padding: 18px 40px; /* Bigger button */
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px; /* Slight radius */
    margin-top: 30px;
    transition: all 0.2s;
    font-weight: 600;
    display: inline-block;
}


.id-btn:hover {
    background-color: #2c4266;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.id-btn-back {
    background: transparent;
    border: 1px solid #ccc;
    color: #666;
    padding: 18px 40px;
    margin-left: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.2s;
}

.id-btn-back:hover {
    background: #f0f0f0;
    color: #333;
}

.id-options {
    margin-top: 40px;
}

.id-option {
    background: #ffffff;
    border: 2px solid #eef2f7;
    margin-bottom: 20px;
    padding: 30px;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.id-option:hover {
    border-color: #1a2a44;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.id-option label {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 20px;
    align-items: start;
    cursor: pointer;
}

.id-option input[type="radio"] {
    grid-row: 1 / span 2;
    margin: 5px 0 0 0;
    transform: scale(1.5); /* Bigger radio button */
    transform-origin: center;
}

.id-option-title {
    font-weight: 700;
    font-size: 20px;
    color: #1a2a44;
    margin-bottom: 5px;
    display: block;
    line-height: 1.2;
}

.id-option-desc {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    display: block;
    grid-column: 2;
}

.id-question {
    background: #ffffff;
    padding: 20px 0;
    margin-bottom: 20px;
    border-left: none;
    border-bottom: 1px solid #eee;
}

.id-question label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
}

.id-question input[type="radio"], 
.id-question input[type="checkbox"] {
    transform: scale(1.3);
    margin: 0;
}

.id-question:last-of-type {
    border-bottom: none;
}

.id-question p {
    margin-top: 0;
}

.id-connector {
    text-align: left;
    font-weight: bold;
    font-size: 12px;
    color: #999;
    margin: 10px 0;
}

.id-small {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.id-declaration {
    margin-top: 20px;
    padding: 20px;
    background: #eef2f7;
    border-radius: 4px;
    font-size: 14px;
}

.id-email-group {
    margin-top: 20px;
}

.id-email-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.id-email-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.id-privacy {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.id-error {
    color: red;
    margin-top: 10px;
    font-weight: bold;
}

@media (max-width: 600px) {
    .id-modal {
        padding: 30px 20px;
        width: 100%;
        margin: 10px; /* Small margin on mobile */
        border-radius: 8px; /* Keep radius but smaller */
        max-width: none;
    }
    
    .id-step h2 {
        font-size: 24px;
    }

    .id-warning-icon {
        font-size: 40px;
    }

    /* Override the previously added overlay reset if present, 
       but since I am replacing the block I just wrote, I can set it correctly */
    #id-overlay {
        padding: 10px; /* Ensure space around */
        background: rgba(0, 0, 0, 0.8); /* Keep dimmed background */
        align-items: flex-start;
    }
}

/* Fallback: Hide for admins if cached */
.admin-bar #id-overlay {
    display: none !important;
}
/* 
@media(min-width:900px){
.cmplz-cookiebanner{
	right:30px !important;
	top:30px !important;
	left:unset !important;
	transform:unset !important;
}
} */