.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 37, 41, 0.95);
    color: #fff;
    padding: 1rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-consent-text {
    flex: 1;
    min-width: 280px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cookie-consent-accept {
    background: #28a745;
    color: #fff;
    border: none;
}

.cookie-consent-accept:hover {
    background: #218838;
    color: #fff;
}

.cookie-consent-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-consent-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.cookie-consent-more {
    color: #fff;
    text-decoration: underline;
}

.cookie-consent-more:hover {
    color: rgba(255, 255, 255, 0.8);
}
