﻿.suscrip-contenedor {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center; /* centra horizontal */
    align-items: center; /* centra vertical */
    gap: 20px; /* espacio entre imagen y texto */
}

.suscrip-icono img {
    height: 60px;
}

.suscrip-titulo {
    display: flex;
    align-items: center;
}

.suscrp_ttl1 {
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    color:green;
}
.barra-tickets {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    gap: 20px;
}

/* BUSQUEDA */
.grupo-busqueda {
    display: flex;
    align-items: center;
    position: relative;
}

.input_cambios {
    padding: 8px 40px 8px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 250px;
}

.icono-busqueda {
    position: absolute;
    right: 10px;
    width: 20px;
    cursor: pointer;
}

/* BOTONES */
.grupo-botones {
    display: flex;
    gap: 15px;
}

.btn-ticket {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

    .btn-ticket.tomar {
        background-color: #28a745;
        color: white;
    }

        .btn-ticket.tomar:hover {
            background-color: #218838;
        }

    .btn-ticket.progreso {
        background-color: #007bff;
        color: white;
    }

        .btn-ticket.progreso:hover {
            background-color: #0069d9;
        }


.user-area {
    display: flex;
    align-items: center;
}

/* LOGIN y BIENVENIDA */
.login-box,
.welcome-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Icono usuario */
.login-img {
    width: 24px;
    cursor: pointer;
}

/* Texto login */
.login-text {
    cursor: pointer;
    color: #333;
    font-weight: 500;
    text-decoration: none;
}

/* Texto bienvenida */
.welcome-text {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* BOTÓN CERRAR SESIÓN */
.logout-btn {
    background: #e53935;
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s ease;
}

    .logout-btn:hover {
        background: #c62828;
    }

/* ===== MENÚ PRINCIPAL ===== */
.nav-wrapper {
    background: #1f3c88;
}

/* Botón hamburguesa */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    padding: 12px 20px;
    cursor: pointer;
}

/* Lista principal */
.menu-links {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 12px 40px;
    margin: 0;
}

    /* Items */
    .menu-links li {
        position: relative;
    }

    /* Links */
    .menu-links a {
        color: white;
        text-decoration: none;
        cursor: pointer;
        font-weight: 500;
        transition: 0.3s;
    }

        .menu-links a:hover {
            opacity: 0.8;
        }

    /* ===== SUBMENÚ ===== */
    .menu-links li ul {
        position: absolute;
        top: 35px;
        left: 0;
        background: white;
        display: none;
        list-style: none;
        padding: 10px 0;
        min-width: 220px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        border-radius: 6px;
    }

    .menu-links li:hover ul {
        display: block;
    }

    .menu-links li ul li {
        padding: 8px 20px;
    }

        .menu-links li ul li a {
            color: #333;
            font-size: 14px;
        }

            .menu-links li ul li a:hover {
                color: #1f3c88;
            }



