#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000000;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    text-align: center;
    z-index: 1000;
    border-top: 5px solid #ff6a00;
}

#cookie-banner div {
    margin-bottom: 15px !important;
    color: #ffffff !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 16px !important;
}

#cookie-banner a {
    color: #ff6a00 !important;
    text-decoration: underline;
}

    .btn-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    }

    .btn {
    padding: 12px 25px;
    margin: 10px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    }

.btn.primary {
    background: #ff6a00;
    color: white;
    position: relative;
    overflow: hidden;
}

.btn.primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: left 0.6s ease;
}

.btn.primary:hover::before {
    left: 120%;
}

.btn.primary:hover {
    background: #e65c00;
}

.btn.reject {
    background: #333333;
    color: white;
    position: relative;
    overflow: hidden;
}

.btn.reject::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: left 0.6s ease;
}

.btn.reject:hover::before {
    left: 120%;
}

.btn.reject:hover {
    background: #555555;
}

/* Ajustes para móviles */
@media (max-width: 600px) {
    #cookie-banner {
        padding: 15px;
        font-size: 0.9em;
    }

    .btn-container {
        flex-direction: column;
        gap: 8px;
    }

    .btn {
        width: 100%;
        margin: 0;
    }
}

