/* Content Box */
#cookie-banner .cookie-content {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Heading */
#cookie-banner .cookie-content h3 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
}

/* Paragraphs */
#cookie-banner .cookie-content p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Button Container */
#cookie-banner .cookie-content button {
    display: inline-block;
    margin-top: 8px;
    margin-right: 8px;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* Accept Button */
#cookie-banner .cookie-content button:first-of-type {
    background: #0057b8;
    color: #fff;
}

#cookie-banner .cookie-content button:first-of-type:hover {
    opacity: 0.9;
}

/* Reject Button */
#cookie-banner .cookie-content button:last-of-type {
    background: #f3f4f6;
    color: #333;
    border: 1px solid #d1d5db;
}

#cookie-banner .cookie-content button:last-of-type:hover {
    background: #e5e7eb;
}


/* Full-screen overlay */
#cookie-banner.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.6);

    z-index: 999999;

    display: none; /* IMPORTANT */

    align-items: center;
    justify-content: center;

    font-family: Arial, sans-serif;
}

#cookie-banner .cookie-content {
    background: #fff;
    width: 500px;
    max-width: 90%;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}






/* button hide for consent check box */

.form-submit-btn{
    border:none;
    padding:12px 25px;
    color:#fff;
    transition:.3s;
}

/* Looks disabled */
.form-submit-btn.disabled-look{
    background:#b5b5b5 !important;
    cursor:not-allowed;
    opacity:.7;
}

/* Active */
.form-submit-btn.active{
    background:#3a74b3 !important;
    cursor:pointer;
    opacity:1;
}


/* Consent alignment */
.consent-wrapper{
    margin-top:15px;
    margin-bottom:15px;
}

.consent-check{
    
    align-items:flex-start;
    gap:10px;
    cursor:pointer;
    margin:0;
    line-height:22px;
}

.consent-check input[type="checkbox"]{
    width:18px;
    height:18px;
    margin-top:3px;
    flex-shrink:0;
}

.consent-check span{
    flex:1;
}

.consent-check a{
    color:#3a74b3;
    text-decoration:underline;
}

/* Error below checkbox */
.consent-wrapper label.error{
    display:block;
    margin-left:28px;
    margin-top:6px;
    color:#dc3545;
    font-size:13px;
    font-weight:400;
}



