body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f9f9f9;
    padding: 1rem;
}

h1{
    text-align: center;
}
.accordion {
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f8b6594f;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    background-color: #ff9d42;
    font-weight: bold;
}

.accordion-header:hover {
    background-color: #fc871a;
}

.accordion-header span {
    font-size: 20px;
    font-weight: bold;
}

.accordion-content {
    display: none;
    padding: 15px;
    border-top: 1px solid #ccc;
    background-color: #fff;
    line-height: 2;
}

.accordion.active .accordion-content {
    display: block;
}

/*Sub Accordion*/
.sub-accordion {
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #ff9d42;
    margin-bottom: 10px;
    overflow: hidden;
}

.sub-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    background-color: #ff9d42;
    font-weight: bold;
}

.sub-accordion-header:hover {
    background-color: #fc871a;
}

.sub-accordion-header span {
    font-size: 20px;
    font-weight: bold;
}

.sub-accordion-content {
    display: none;
    padding: 15px;
    border-top: 1px solid #ccc;
    background-color: #fff;
    line-height: 2;
}


.sub-accordion.active .sub-accordion-content{
    display: block;
}

.table-border{
    border-collapse: collapse;
    width: 100%;
    border: 2px solid #252525;
    border-radius: 10px;
    overflow: hidden;
}
.table-border th,
.table-border td{
    border: 1px solid #636363;
    padding: 10px;
}
.table-border th {
  text-align: center; /* centra el texto del encabezado */
  background-color: #ff9d42;
}