.admin-user-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 16px;
    margin: 12px 0;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.admin-user-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.admin-user-image {
    flex-shrink: 0;
    margin-right: 16px;
}

.admin-user-image img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #012c6d;
}

.admin-user-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.admin-user-info h2 {
    margin: 0;
    font-size: 18px;
    color: #012c6d;
    font-weight: 600;
}

.admin-user-info p,
.admin-user-info span {
    margin: 2px 0;
    font-size: 14px;
    color: #333;
}

.status-wrapper {
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.status-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.status-text {
    font-size: 13px;
    color: #666;
}
/* buscador*/
#buscadorAdmin {
    width: 50%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    outline: none;
    margin-right: 10px;
    transition: border-color 0.3s ease;
}

#buscadorAdmin:focus {
    border-color: #3e3f3f;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.seccion-titulo {
    font-size: 25px;
    font-weight: bold;
    color: #012c6d;
    margin-top: 10px;
    margin-bottom: 16px;
    border-left: 4px solid #f4a024;
    padding-left: 20px;
    margin-left: 20px;
}

/* estado*/

.estado-usuario {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    margin-top: 6px;
}

.status-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-text {
    font-weight: 500;
}

/*modal*/

.modal-admin {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro */
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
}

.modal-admin-content {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.modal-admin-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

.modal-usuario-contenido {
    font-family: 'Poppins', sans-serif;
    padding: 25px;
    max-width: 500px;
    width: 100%;
    color: #333;
}

.modal-titulo {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #012c6d;
}

.modal-info-lista {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.modal-info-lista li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #444;
}

.modal-info-lista li span {
    font-weight: bold;
    color: #012c6d;
}

.modal-botones {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
}

.modal-botones button {
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}


.btn-notificar {
    background-color: #f4a024;
    border: solid 1px transparent;
    color: white;
}

.btn-notificar:hover {
    background-color: #ffffff;
    border: 1px solid #f4a024;
    color: #f4a024;

}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

/*notificacion*/
.modal-notificacion {
    font-family: 'Poppins', sans-serif;
    max-width: 450px;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    width: 90%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    font-family: 'Poppins', sans-serif;
    position: relative;
    top: 30%;
    left: 35%;
}

.modal-notificacion textarea {
    width: 100%;
    height: 120px;
    resize: none;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    padding: 10px;
    margin-bottom: 10px;
    margin-top: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/*noticacion general*/
.admin-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.form-notificacion-general {
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    font-family: 'Roboto', sans-serif;
}

.form-notificacion-general h3{
    font-size: 24px;
    font-weight: bold;
    color: #012c6d;
    margin-top: 10px;
    margin-bottom: 16px;
    border-left: 4px solid #f4a024;
    padding-left: 20px;
} 
  
.form-notificacion-general label {
    display: block;
    margin: 12px 0 6px;
    font-weight: 600;
}
  
.form-notificacion-general select,
.form-notificacion-general input[type="text"],
.form-notificacion-general textarea {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
  
.form-notificacion-general textarea {
    resize: vertical;
    min-height: 90px;
}
  
.form-notificacion-general .boton-enviar {
    margin-top: 15px;
    background-color: #f4a024;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
    border: solid 1px transparent;
}
  
.form-notificacion-general .boton-enviar:hover {
    background-color: #ffffff;
    border: 1px solid #f4a024;
    color: #f4a024;
}

.form-notificacion-general input{
    margin-top: 5px;
    padding: 10px;
    width: 550px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Estilo para tabla de suscriptores */
.tabla-container{
    margin: 20px;
}
.tabla-admin {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background-color: #fff;
    margin-top: 20px;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.tabla-admin thead {
    background-color: #012c6d;
    color: #fff;
    text-align: left;
}

.tabla-admin th,
.tabla-admin td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.tabla-admin tbody tr:hover {
    background-color: #f9f9f9;
}

.tabla-admin td:last-child {
    text-align: center;
}

/* Botón eliminar */
.btn-eliminar {
    background-color: #012c6d;
    border: 1px solid transparent;
    color: white;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.btn-eliminar:hover {
    background-color: white;
    color: #012c6d;
    border: 1px solid #012c6d;
}

.titulo-sus{
    font-size: 24px;
    font-weight: bold;
    color: #012c6d;
    margin-top: 10px;
    margin-bottom: 16px;
    margin-left: 20px;
    border-left: 4px solid #f4a024;
    padding-left: 20px;
}

/*buscador */
.input-buscador {
    width: 100%;
    max-width: 400px;
    padding: 10px 14px;
    margin-bottom: 15px;
    margin-left: 20px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline-color: #f4a024;
}

/*Estadistica*/
.estadisticas-resumen {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.tarjeta-resumen {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
}

.tarjeta-resumen .icono {
    font-size: 32px;
    margin-right: 15px;
    color: #012c6d;
}

.tarjeta-resumen .contenido {
    display: flex;
    flex-direction: column;
}

.tarjeta-resumen .titulo {
    font-weight: 500;
    color: #777;
    margin-bottom: 5px;
}

.tarjeta-resumen .valor {
    font-size: 22px;
    font-weight: bold;
    color: #012c6d;
}
