.bg-dark-2 {
    background-color: #1a1a2e;
    /* Darker background for contrast */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-body {
    padding: 3rem 2rem;
}

.search-container {
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#termino_busqueda {
    border: none;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding-left: 20px;
    height: 50px;
    font-size: 1.1rem;
    color: #333;
    border-radius: 50px;
}

#termino_busqueda:focus {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    outline: none;
}

#btnBuscar {
    border-radius: 50px;
    padding: 0 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 50px;
    transition: all 0.3s ease;
}

#btnBuscar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

#resultados_busqueda .card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

#resultados_busqueda .card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.12);
}

.boleto-badge {
    display: inline-block;
    padding: 8px 12px;
    margin: 4px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.boleto-activo {
    background-color: #00c851;
    color: white;
}

.boleto-pendiente {
    background-color: #ffbb33;
    color: #212121;
}

.boleto-vendido {
    background-color: #ff4444;
    color: white;
}