* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;	
}

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 14px;
}

/***********************************************************
/ INDEX
/**********************************************************/
.logo_index {
	max-width: 400px;
	width: 100%;
	height: auto;
	cursor: pointer;
}

.titulo_index {
	color: white;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.3;
	text-transform: uppercase;
	text-align: center;
	position: absolute;
	bottom: 60px;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: 0 20px;
}

@media (max-width: 600px) {
	.titulo_index {
		font-size: 10px;
		bottom: 40px;
	}
	.logo_index {
		max-width: 150px;
	}
}

/* Estilos para los campos del login */
.campo-login {
	margin-bottom: 20px;
}
 
.campo-login label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 8px;
	color: #333;
}

.campo-login input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 14px;
	transition: border-color 0.2s ease;
}

.campo-login input:focus {
	outline: none;
	border-color: #2c3e66;
}

/***********************************************************
/ C CONTROL
/**********************************************************/

.body-contenido {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* FILA SUPERIOR */
.fila-superior {
    display: flex;
    /* ============================= */
    /* MODIFICAR ALTO DE LA FILA SUPERIOR AQUÍ */
    height: 200px;
    /* ============================= */
}

.box_perfil {
    /* ============================= */
    /* MODIFICAR TAMAÑO DEL CUADRADO AQUÍ (ancho y alto iguales) */
    width: 200px;
    height: 200px;
    /* ============================= */
    /*background-color: #2c3e66;*/
	background-color: #79272B;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.perfil-circulo {
    /* ============================= */
    /* MODIFICAR DIÁMETRO DEL CÍRCULO AQUÍ */
    width: 130px;
    height: 130px;
    /* ============================= */
    border-radius: 50%;
    border: 3px solid white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4;
}

.perfil-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.perfil-nombre {
    margin-top: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* SIN bordes ni líneas */
.box_menu-item {
	border: none; /* ❌ quitamos contorno */
}

/* títulos */
.box_menu-title {
	padding: 10px;
	cursor: pointer;
	background: #5a6268;
	transition: 0.3s;
	border: none; /* ❌ sin bordes */
	color: white;
}

.box_menu-title:hover {
	background: #495057;
}

/* submenú */
.box_menu_submenu {
	max-height: 0;
	overflow: hidden;
	background: #7a8288;
	transition: max-height 0.3s ease;
	border: none; /* ❌ sin bordes */	
	color: white;
}

.box_menu_submenu div {
	padding: 8px 13px;
	cursor: pointer;
	font-size: 13px;
}

.box_menu_submenu div:hover {
	background: rgba(0,0,0,0.2);
}

.box_menu-title i {    
    margin-right: 10px;    
}
.box_menu_submenu div i {
	margin-left: 20px;
    margin-right: 10px;
}

.box_menu_a,
.box_menu_a * {
    user-select: none;
    -webkit-user-select: none; /* Chrome/Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE/Edge viejo */
}

.box_menu-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    cursor: pointer;
    background: #5a6268;
    transition: 0.3s;
    border: none;
    color: white;
}

.box_menu-title .caret-animado {
    transition: transform 0.3s ease;
    font-size: 12px;
    margin-left: auto;
}

.box_menu-title.abierto .caret-animado {
    transform: rotate(180deg);
}

/* El texto e icono a la izquierda */
.box_menu-title span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.barra-herramientas {
    /* ============================= */
    /* MODIFICAR ALTO DE LA BARRA HERRAMIENTAS AQUÍ */
    /* Actualmente es 33% del alto del cuadrado (200px * 0.33 = 66px) */
    height: 50px;
    /* ============================= */
    background-color: #3A6EA5;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
}

.herramientas-iconos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.herramientas-iconos i {
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.herramientas-iconos i:hover {
    opacity: 0.8;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

/* FILA CENTRAL */
.fila-central {
    display: flex;
    flex: 1;
    min-height: 0;
}

/* BARRA MENU CON SCROLL */
/* BARRA MENU CON SCROLL */
.barra-menu {
    /* ============================= */
    /* MODIFICAR ANCHO DE LA BARRA MENU AQUÍ */
    width: 200px;
    /* ============================= */
    background-color: #5a6268;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Scroll moderno */
.barra-menu::-webkit-scrollbar {
    width: 6px;
}

.barra-menu::-webkit-scrollbar-track {
    background: #4a5258;
    border-radius: 3px;
}

.barra-menu::-webkit-scrollbar-thumb {
    background: #7a838a;
    border-radius: 3px;
}

.barra-menu::-webkit-scrollbar-thumb:hover {
    background: #8a939a;
}

.menu-container {
    padding: 10px 0;
}

/* ITEMS DEL MENU */
.menu-item {
    list-style: none;
}

/* TÍTULO PRINCIPAL */
.menu-titulo {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
    background-color: #5a6268;
}

.menu-titulo:hover {
    background-color: #6c757d;
}

.menu-icono {
    width: 24px;
    font-size: 16px;
}

.menu-titulo span {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.menu-flecha {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.menu-titulo.abierto .menu-flecha {
    transform: rotate(90deg);
}

/* SUBMENU NIVEL 1 CON ANIMACION */
.submenu {
    display: none;
    background-color: #6c757d;
    overflow: hidden;
}

.submenu.abierto {
    display: block;
    animation: deslizar 0.2s ease-in-out;
}

@keyframes deslizar {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-subtitulo {
    display: flex;
    align-items: center;
    padding: 10px 16px 10px 40px;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
    background-color: #6c757d;
}

.menu-subtitulo:hover {
    background-color: #7a838a;
}

.menu-subtitulo span {
    flex: 1;
    font-size: 13px;
}

.menu-subtitulo .menu-flecha {
    transition: transform 0.2s ease;
}

.menu-subtitulo.abierto .menu-flecha {
    transform: rotate(90deg);
}

/* SUBMENU NIVEL 2 CON ANIMACION */
.submenu2 {
    display: none;
    background-color: #7a838a;
    overflow: hidden;
}

.submenu2.abierto {
    display: block;
    animation: deslizar 0.2s ease-in-out;
}

.menu-item-simple {
    display: flex;
    align-items: center;
    padding: 10px 16px 10px 64px;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
    background-color: #7a838a;
}

.menu-item-simple:hover {
    background-color: #8a939a;
}

.menu-item-simple span {
    font-size: 13px;
}

.menu-item-simple .menu-icono {
    font-size: 13px;
}

.contenido-principal {
    flex: 1;
    background-color: #f4f4f4;
    padding: 20px;
    overflow-y: auto;
}

/* FOOTER */
.footer {
    /* ============================= */
    /* MODIFICAR ALTO DEL FOOTER AQUÍ */
    height: 30px;
    /* ============================= */
    background-color: #000000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
/***********************************************************
 BOTONES DEL SISTEMA
***********************************************************/

.btn_a {
    /*background-color: #2c3e66;*/
	background-color: #79272B;  /* NUEVO*/
    color: white;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: normal;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn_a:hover {
    /*background-color: #3b4f7a;*/
	background-color: #99272B;
    color: #ffffff;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

.btn_b {
    background-color: #6c757d;
    color: white;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: normal;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn_b:hover {
    background-color: #5a6268;
    color: #ffffff;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

/***********************************************************
 MODAL MODELO
***********************************************************/
/* VENTANA MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
	z-index: 1000;
}

.modal-contenido {
    /* ============================= */
    /* MODIFICAR ANCHO AQUÍ (cambiar 500px por el valor deseado) */
    width: 500px;
    /* MODIFICAR ALTO AQUÍ (cambiar 300px por el valor deseado) */
    height: 300px;
    /* ============================= */
    
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal.active {
    background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999999; /* ← Mayor que el normal */
}

.modal.active .modal-contenido {
    transform: scale(1);
    opacity: 1;
}

/* CABECERA */
.modal-cabecera {
    padding: 12px;
    /*background-color: #2c3e66;*/
	background-color: #79272B;   /* NUEVO */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.modal-titulo {
    font-weight: bold;
    text-transform: uppercase;
}

.modal-cerrar {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.modal-cerrar:hover {
    opacity: 0.8;
}

/* CUERPO */
.modal-cuerpo {
    padding: 12px;
    flex: 1;
    overflow-y: auto;
}

/* FOOTER */
.modal-footer {
    padding: 12px 20px;
    background-color: #f4f4f4;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-mensajes {
    flex: 1;
    text-align: left;
    font-size: 12px;
    color: #666;
}

.modal-botones {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

/************************************************************
// Estilos Mis Datos Modal
//***********************************************************

/* MODAL TAMAÑO GRANDE */
#MisDatosModal .modal-contenido {
    width: 850px;
    height: auto;
    max-height: 85vh;
}

/* MODAL CUERPO */
#MisDatosModal .modal-cuerpo {
    padding: 0;
    flex: 1;
    overflow: hidden;
}

/* CONTENEDOR PRINCIPAL */
.mis_datos_cuerpo_contenido {
    display: flex;
    min-height: 400px;
    max-height: 60vh;
}

/* LADO IZQUIERDO - FIJO */
.mis_datos_izquierda {
    width: 250px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.mis_datos_foto_container {
    text-align: center;
    padding: 20px;
}

.mis_datos_foto_cuadrado {
    width: 180px;
    height: 180px;
    background-color: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s ease;
    margin-bottom: 15px;
    border: 2px dashed #2c3e66;
}

.mis_datos_foto_cuadrado:hover {
    opacity: 0.8;
}

.mis_datos_foto_imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mis_datos_btn_foto {
    background-color: #2c3e66;
    color: white;
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mis_datos_btn_foto:hover {
    background-color: #1f2e4a;
}

/* LADO DERECHO - SCROLL */
.mis_datos_derecha {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background-color: white;
}

/* SECCIONES DEL FORMULARIO */
.mis_datos_seccion {
    margin-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 16px;
}

.mis_datos_seccion_titulo {
    font-size: 16px;
    font-weight: bold;
    color: #2c3e66;
    margin-bottom: 16px;
    padding-left: 4px;
    border-left: 3px solid #2c3e66;
}

/* CAMPOS EN FILA */
.mis_datos_campo_row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.mis_datos_campo_col {
    flex: 1;
    min-width: 150px;
}

.mis_datos_campo_col label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.mis_datos_campo_input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.mis_datos_campo_input:focus {
    outline: none;
    border-color: #2c3e66;
}

.campo-obligatorio {
    color: #dc3545;
    font-size: 12px;
}

/* SCROLL MODERNO PARA LADO DERECHO */
.mis_datos_derecha::-webkit-scrollbar {
    width: 6px;
}

.mis_datos_derecha::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.mis_datos_derecha::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.mis_datos_derecha::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.btn_exito {
    background-color: #28a745;
    color: white;
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn_exito:hover {
    background-color: #1e7e34;
    color: #ffffff;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

/* MODAL LISTA DE USUARIOS */
.modal-cuerpo-lista {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.filtros-container {
    display: flex;
    gap: 20px;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
}

.filtro-grupo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filtro-grupo label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.filtro-grupo input,
.filtro-grupo select {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
}

.tabla-container {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px;
}

.tabla-usuarios {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.tabla-usuarios th,
.tabla-usuarios td {
    padding: 10px 8px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.tabla-usuarios th {
    background-color: #2c3e66;
    color: white;
    font-weight: 500;
    position: sticky;
    top: 0;
}

.tabla-usuarios tr:hover {
    background-color: #f5f5f5;
}

.tabla-usuarios td:last-child {
    white-space: nowrap;
    padding: 5px 8px;
}

.btn_accion {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin: 0 2px;
    padding: 4px 0px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn_editar {
    color: #007bff;
}

.btn_editar:hover {
    background-color: #007bff20;
}

.btn_eliminar {
    color: #dc3545;
}

.btn_eliminar:hover {
    background-color: #dc354520;
}

.btn_activar {
    color: #28a745;
}

.btn_activar:hover {
    background-color: #28a74520;
}

.btn_desactivar {
    color: #ffc107;
}

.btn_desactivar:hover {
    background-color: #ffc10720;
}

.btn_wiswitch {
    color: #28a745;
}

.btn_wiswitch:hover {
    background-color: #28a74520;
}

.tabla-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f4f4f4;
    border-top: 1px solid #ddd;
}

.tabla-paginacion {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn_pag {
    background-color: #2c3e66;
    color: white;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn_pag:hover {
    background-color: #3b4f7a;
}

.btn_pag.active {
    background-color: #1f2e4a;
    font-weight: bold;
}

.estado_stock { 
	color: #6c757d; 
	font-weight: bold; 
}

.estado_conectado { 
	color: #17a2b8; 
	font-weight: bold; 
}

.estado_activo {
    color: #28a745;
    font-weight: bold;
}

.estado_inactivo {
    color: #dc3545;
    font-weight: bold;
}

/* Columna 1 = ID (centrada) */
.tabla-usuarios th:nth-child(1),
.tabla-usuarios td:nth-child(1) {
    text-align: center;
    width: 60px;
}

/* Columna 5 = Rol (centrada) */
.tabla-usuarios th:nth-child(5),
.tabla-usuarios td:nth-child(5) {
    text-align: center;
}

/* Columna 6 = Usuarios creados */
.tabla-usuarios td:nth-child(6),
.tabla-usuarios th:nth-child(6) {
    text-align: center;
}

/* Columna 7 = Expira */
.tabla-usuarios td:nth-child(7),
.tabla-usuarios th:nth-child(7) {
    text-align: center;
}

/* Columna 9 = Acciones */
.tabla-usuarios td:nth-child(9),
.tabla-usuarios th:nth-child(9) {
    text-align: center;
}

.modal {
    z-index: 1000;
}

.modal.active {
    z-index: 1010;
}

#ContactoModal {
    z-index: 2000 !important;
}

#ContactoModal.active {
    z-index: 2001 !important;
}

#ListaContactosModal {
    z-index: 1000;
}

#ListaContactosModal.active {
    z-index: 1001;
}

/* MODAL CALENDARIO */

.modal-cuerpo-calendario {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
    background-color: white;
}

#calendar {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.campo {
    margin-bottom: 15px;
}

.campo label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.campo input, .campo textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.campo input:focus, .campo textarea:focus {
    outline: none;
    border-color: #2c3e66;
}

/* Menú opciones calendario */
#opcionesCalendario {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 10000;
}

.context-menu-item {
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.context-menu-item:hover {
    background-color: #f0f0f0;
}

.context-menu-item i {
    width: 18px;
    color: #2c3e66;
}

.fc-daygrid-day-events {
    min-height: 30px;
}
.fc-event {
    white-space: normal !important;
    overflow: visible !important;
}

/* Que el evento ocupe todo el ancho de la celda */
.fc-daygrid-day-events {
    width: 100%;
}

.fc-daygrid-event {
    width: 100% !important;
    display: block !important;
}

.fc-event-custom {
    width: 100%;
    display: block;
}

.fc-h-event {
    width: 100% !important;
    background-color: transparent !important;
    border: none !important;
}

/* Prevenir menú contextual del navegador en todo el calendario */
.fc,
.fc * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.fc-daygrid-day,
.fc-event,
.fc-daygrid-day-frame,
.fc-daygrid-day-top {
    -webkit-touch-callout: none;
}

/* Modal de confirmación siempre por encima */
#MsjConfirmacionModal {
    z-index: 1020;
}

#MsjConfirmacionModal.active {
    z-index: 1021;
}

#DetalleWiSwitchModal {
    z-index: 1050 !important;
}

#DetalleWiSwitchModal.active {
    z-index: 1051 !important;
}

/************************************************************
// Estilos Empresa Modal
//***********************************************************/

/* MODAL TAMAÑO */
.modal-empresa {
    width: 850px;
    height: auto;
    max-height: 85vh;
}

.modal-empresa-cuerpo {
    padding: 0;
    flex: 1;
    overflow: hidden;
}

/* CONTENEDOR PRINCIPAL */
.empresa-contenido {
    display: flex;
    min-height: 400px;
    max-height: 60vh;
}

/* LADO IZQUIERDO - LOGO */
.empresa-izquierda {
    width: 300px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e0e0e0;
    flex-shrink: 0;
    padding: 20px;
}

.empresa-logo-container {
    text-align: center;
    width: 100%;
}

.empresa-logo-cuadrado {
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 3.1 / 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s ease;
    margin: 0 auto 15px auto;
    border: 2px dashed #2c3e66;
}

.empresa-logo-cuadrado:hover {
    opacity: 0.8;
}

.empresa-logo-imagen {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

.empresa-logo-icono {
    font-size: 60px;
    color: #2c3e66;
    display: block;
}

/* LADO DERECHO */
.empresa-derecha {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background-color: white;
}

.empresa-derecha::-webkit-scrollbar {
    width: 6px;
}

.empresa-derecha::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.empresa-derecha::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.empresa-derecha::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.empresa-seccion-ultima {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* BOTON CARGAR LOGO */
/*#empresa_btn_logo {
    background-color: #2c3e66;
    color: white;
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#empresa_btn_logo:hover:not(:disabled) {
    background-color: #1f2e4a;
}

#empresa_btn_logo:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}*/

/* RESPONSIVE */
@media (max-width: 768px) {
    .modal-empresa {
        width: 95%;
        max-height: 90vh;
    }
    
    .empresa-contenido {
        flex-direction: column;
        min-height: auto;
        max-height: none;
    }
    
    .empresa-izquierda {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 15px;
    }
    
    .empresa-logo-cuadrado {
        max-width: 200px;
    }
    
    .empresa-derecha {
        padding: 15px;
        max-height: 400px;
    }
}