#cookie-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

#cookie-banner {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    width: 92vw;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    padding: 32px 28px;
    font-family: system-ui, sans-serif;
}

#cookie-banner h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

#cookie-banner p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

#cookie-banner .cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#cookie-banner .cookie-actions button {
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

#cookie-accept {
    background-color: #0d6efd;
    color: white;
    border: none;
}

#cookie-decline {
    background-color: transparent;
    border: 1px solid #aaa;
    color: #333;
}

#cookie-banner a {
    color: #0d6efd;
    text-decoration: underline;
}