/* cookie-consent.css */
.cookie-consent-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.cookie-consent-content {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
    text-align: left;
    margin: 0;
    box-sizing: border-box;
}
.cookie-consent-content h2 {
    margin-top: 0;
}
.cookie-category {
    margin-bottom: 1rem;
}
.cookie-category label {
    font-weight: 500;
}
.cookie-desc {
    display: block;
    font-size: 0.9em;
    color: #555;
    margin-left: 1.5em;
}
.cookie-consent-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.cookie-consent-actions button {
    flex: 1;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    background: #007bff;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-consent-actions button:hover {
    background: #0056b3;
}
@media (max-width: 500px) {
    .cookie-consent-content {
        padding: 1rem;
        max-width: 95vw;
    }
} 