

/* 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);
}
