/*<css-9273>*/.academic-tabs-container {
	border-radius: 0.5rem;
	overflow: hidden;
}

.academic-tabs-nav {
	border-right: 2px solid #6f42c1;
	background-color: #f8f9fa;
}

.academic-main-tab {
	color: #495057;
	font-weight: 500;
	padding: 0.75rem 1.25rem;
	border-radius: 0.25rem;
	margin-bottom: 0.25rem;
	transition: all 0.2s;
	cursor: pointer;
	display: flex;
    justify-content: space-between;
}

.academic-main-tab:hover,
.academic-main-tab.active {
	color: rgb(23, 177, 64) !important ;
	background-color: rgba(111, 66, 193, 0.1);
}

.academic-submenu {
	padding-left: 1.5rem;
}

.academic-subtab {
	padding: 0.5rem 1.5rem;
	font-weight: 400;
	color: #6c757d;
	cursor: pointer;
}

.academic-subtab:hover,
.academic-subtab.active {
	color: rgb(23, 177, 64) !important;
	background-color: rgba(111, 66, 193, 0.05);
}

.academic-collapse-trigger::after {
	content: '+';
	float: right;
	transition: transform 0.3s;
}

.academic-collapse-trigger.collapsed::after {
	content: '+';
}

.academic-collapse-trigger:not(.collapsed)::after {
	content: '-';
}

.academic-content-pane {
	padding: 1.5rem;
	min-height: 300px;
	display: none; /* Ocultamos todos inicialmente */
}

.academic-content-pane.active {
	display: block; /* Mostramos solo el activo */
}

.academic-content-title {
	color: #6f42c1;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.academic-content-text {
	line-height: 1.6;
	color: #495057;
}

/* Rectángulos */

.botones_izquierda.active #icono_rectangulo {
    color: rgb(23, 177, 64) ;
	background-color: rgb(23, 177, 64);
}
.botones_izquierda.active #icono_rectangulo:before {
    color: rgb(23, 177, 64)!important;
    background-color: rgb(23, 177, 64) !important;
}
#icono_rectangulo:before {
    display:flex;
    width: 23px;
	color:#c3c3c3;
	background-color:#c3c3c3;
}

#icono_rectangulo_texto:before {
    display:flex;
	width: 12px;
    height: 12px;
	color:rgb(23, 177, 64) !important;
	background-color:rgb(23, 177, 64) !important;
	margin-top: 5px;
}

#icono_rectangulo:before:active{
	color: rgb(23, 177, 64) !important;
	background-color: rgb(23, 177, 64) !important;
}

.botones_izquierda:active i#icono_rectangulo:before {
	color: rgb(23, 177, 64) !important;
	background-color:rgb(23, 177, 64) !important;
}

.botones_izquierda:hover #icono_rectangulo:before,
.botones_izquierda:active #icono_rectangulo:before {
    color: rgb(23, 177, 64) !important;
    background-color: rgb(23, 177, 64) !important; 
}
#icono_rectangulo{
	margin-right:15px;
}

/*Tabla*/

.styled-table {
    border-collapse: separate !important; /* Evita colapso de bordes */
    border-spacing: 0 !important; /* Sin espacio entre celdas */
    margin: 25px 0 !important;
    font-size: 0.9em !important;
    font-family: Arial, sans-serif !important;
    min-width: 500px !important;
    background-color: #ffffff !important; /* Fondo blanco */
    border: 2px solid #00d3a6 !important; /* Borde exterior de 2px */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    border-radius: 25px !important; /* Bordes redondeados */
    overflow: hidden !important; /* Muestra bordes redondeados */
}

.styled-table thead {
    background-color: #00d3a6 !important; /* Fondo violeta oscuro */
    color: #ffffff !important; /* Texto blanco */
}

.styled-table thead th {
    padding: 12px 15px !important;
    text-align: left !important;
    border: none !important; /* Sin bordes */
}

.styled-table thead th:first-child {
    border-top-left-radius: 20px !important; /* Esquina superior izquierda redondeada */
}

.styled-table thead th:last-child {
    border-top-right-radius: 18px !important; /* Esquina superior derecha redondeada */
}

.styled-table tbody td {
    padding: 12px 12px !important;
    border-left: none !important; /* Sin líneas verticales */
    border-right: none !important; /* Sin líneas verticales */
    color: #303030 !important; /* Texto negro */
    background-color: #ffffff !important; /* Fondo blanco */
}

/* Líneas horizontales internas */
.styled-table tbody tr:not(:last-child) {
    border-bottom: 2px solid #00d3a6 !important; /* Líneas internas de 2px */
}

/* Última línea horizontal */
.styled-table tbody tr:last-of-type {
    border-bottom: none !important; /* Elimina completamente la última línea */
    /* Si prefieres un borde invisible de 0px, reemplaza "none" con esta línea:
    border-bottom: 0px solid #00d3a6 !important;
    */
}

.styled-table tbody tr:last-of-type td:first-child {
    border-bottom-left-radius: 20px !important; /* Esquina inferior izquierda redondeada */
}

.styled-table tbody tr:last-of-type td:last-child {
    border-bottom-right-radius: 20px !important; /* Esquina inferior derecha redondeada */
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f9f9f9 !important; /* Fondo claro alternado */
}

.styled-table tbody tr:nth-of-type(odd) {
    background-color: #ffffff !important; /* Fondo blanco para filas impares */
}

/* Nuevas reglas añadidas */

/* Aplica un borde inferior de 2px en todas las celdas (excepto la última fila) */
.styled-table > :not(caption) > * > * {
    border-bottom-width: 2px !important;
}

/* Elimina el borde inferior de la última fila */
.styled-table tr:last-child * {
    border-bottom-width: 0px !important;
}
/*</css-9273>*/