.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(33, 37, 41, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

.cookie-consent .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-consent-content {
    flex: 1;
    margin-right: 20px;
}

.cookie-consent h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.cookie-consent p {
    font-size: 14px;
    margin-bottom: 0;
    color: #e0e0e0;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}

.cookie-consent-btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-consent-btn.accept {
    background-color: #C0BD30;
    color: #fff;
    border: 1px solid #C0BD30;
}

.cookie-consent-btn.accept:hover {
    background-color: #a8a529;
    border-color: #a8a529;
}

.cookie-consent-btn.reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-consent-btn.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-consent-btn.settings {
    background-color: #6c757d;
    color: #fff;
    border: 1px solid #6c757d;
}

.cookie-consent-btn.settings:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cookie-settings-header h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.cookie-settings-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6c757d;
}

.cookie-settings-body {
    margin-bottom: 20px;
}

.cookie-settings-group {
    margin-bottom: 15px;
}

.cookie-settings-group h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.cookie-settings-group p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
}

.cookie-settings-toggle {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-settings-toggle label {
    margin-left: 10px;
    font-size: 14px;
    color: #333;
}

.cookie-settings-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-settings-footer .cookie-consent-btn.accept {
    background-color: #C0BD30;
    color: #fff;
    border: 1px solid #C0BD30;
}

.cookie-settings-footer .cookie-consent-btn.accept:hover {
    background-color: #a8a529;
    border-color: #a8a529;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cookie-consent .container {
        flex-direction: column;
    }
    
    .cookie-consent-content {
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        justify-content: center;
    }
} 