
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #343a40;
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: bottom 0.3s ease-in-out;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-consent p {
    margin: 0;
    padding-right: 20px;
}

.cookie-consent-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.cookie-consent-btn:hover {
    background-color: #0069d9;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
    
    .cookie-consent p {
        padding-right: 0;
        margin-bottom: 10px;
    }
}
