.cookie-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    z-index: 10000;
    display: none;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Inter', -apple-system, sans-serif;
}

.cookie-content h3 {
    margin-bottom: 10px;
    color: #000;
}

.cookie-content p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
}

.cookie-buttons {
    margin-top: 15px;
}

.btn-accept {
    background-color: #2ecc71;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
}

.btn-decline {
    background: #f1f1f1;
    color: #333;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-accept:hover {
    background-color: #27ae60;
}

.btn-decline:hover {
    background-color: #e0e0e0;
}