.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 15px 20px;
    z-index: 99999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
}

.cookie-consent-banner.hidden {
    display: none;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: #e67e22;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #f39c12;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s, transform 0.1s;
}

.cookie-consent-btn:hover {
    transform: translateY(-1px);
}

.cookie-consent-btn:active {
    transform: translateY(0);
}

.cookie-consent-btn-accept {
    background-color: #e67e22;
    color: #fff;
}

.cookie-consent-btn-accept:hover {
    background-color: #d35400;
}

.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);
}

@media (max-width: 600px) {
    .cookie-consent-banner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-text {
        min-width: 100%;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
}
