/* cookie-consent.css */
#cookieOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

#cookieConsent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 600px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 25px;
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { bottom: -100%; }
    to { bottom: 20px; }
}

.cookie-content {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin: 15px 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.cookie-btn.accept {
    background: #4CAF50;
    color: white;
}

.cookie-btn.reject {
    background: #f44336;
    color: white;
}

#edgeWarning {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff3cd;
    color: #856404;
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ffeeba;
    z-index: 10000;
}