#cookie-consent-modal {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
}
#cookie-consent-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}
.cookie-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}
.cookie-buttons button {
    padding: 8px 15px;
    border: none;
    cursor: pointer;
}
#accept-cookies {
    background: green;
    color: white;
}
#decline-cookies {
    background: crimson;
    color: white;
}
#cookie-policy-link {
    color: #007bff;
    text-decoration: underline;
}