.listado_documentos_container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* font-family: "Gotham", "Helvetica Neue", Helvetica, Arial, sans-serif; */
}
.sidebar {
    flex: 1;
    min-width: 200px;
    border-right: solid #F18903 2px;
    padding-right: 10px;
}
.content {
    flex: 2;
    min-width: 300px;
    position: relative;
    min-height: 300px; /* Ajusta este valor según tus necesidades */
}
h2 {
    color: #ff8c00;
}
.menu, .submenu {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    position: relative;
}
.menu > li {
    margin-bottom: 10px;
}
.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 20px;
    list-style: circle;
}
.submenu.active {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}
.toggle, .submenu a {
    cursor: pointer;
    color: #004F59;
    text-decoration: none;
    display: block;
}
.toggle::after {
    content: '▶';
    display: inline-block;
    margin-right: 5px;
    transition: transform 0.3s;
    position: absolute;
    right: 0;
    transform: rotate(90deg);
}
.toggle.active::after {
    transform: rotate(269deg);
}
.menu > li > a.active {
    color: #F18903;
}
.menu > li > .submenu a{
    color:#6E6259;
}
.menu > li > .submenu a.active{
    font-weight: bold;
}
.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}
.tab-content p{
    font-size: 16px;
    margin: 0 0 10px 0;
}
.tab-content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}
table {
    width: 100%;
    border-collapse: collapse;
    color: #004F59;
}
th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
.download-icon {
    color: #0066cc;
    text-decoration: none;
}
.ld-alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.ld-alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.ld-alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.ld-alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.ld-alert-primary {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe;
}

.ld-alert-secondary {
    color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8;
}

.ld-alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}
@media (max-width: 768px) {
    .listado_documentos_container {
        flex-direction: column;
    }
}