.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-consent a {
    text-decoration: underline;
}

.cookie-consent .btn {
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .cookie-consent .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .cookie-consent .btn {
        margin: 0.25rem;
    }
} 