/* Cookie Consent Popup Styles */
.cookie-consent-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.65);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    z-index: 9999;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-consent-message {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    min-width: 300px;
}

.cookie-consent-message a {
    color: #00a057;
    text-decoration: none;
    font-weight: 500;
}

.cookie-consent-message a:hover {
    text-decoration: underline;
}

.cookie-consent-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-consent-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.cookie-consent-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-consent-message {
        min-width: auto;
        text-align: center;
    }
    
    .cookie-consent-btn {
        width: 100%;
        max-width: 200px;
    }
}
/*# sourceMappingURL=cookie-consent.css.map */