.panel-de-residencias-page {
    width: 100%;
    min-height: 75vh;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.centrar-celda-formulario {
    display: flex;
    justify-content: center;
}

.panel-de-residencias-nav-container {
    width: 20%;
    padding: 50px 0;
    border-right: 1px solid #aaa;
}

.panel-de-residencias-nav-menu {
    list-style: none;
}

.panel-de-residencias-nav-item {
    margin: 15px 0;
    font-size: 1.2em;
    font-weight: 600;
}

.panel-de-residencias-nav-item a {
    color: black;
    display: block;
    width: fit-content;
}

.panel-de-residencias-nav-item a:hover {
    color: black;
}

.panel-de-residencias-nav-item.is-active a::after {
    content: '';
    display: block;
    height: 2px;
    background-color: #b9a081;
    margin: 0;
    margin-top: 5px;
}

.panel-de-residencias-nav-item:hover a::after {
    content: '';
    display: block;
    height: 2px;
    background-color: #b9a081;
    margin: 0;
    margin-top: 5px;
}

.panel-de-residencias-content {
    min-height: 75vh;
    max-width: 80%;
    width: 80%;
    padding: 75px;
}

.panel-residencias_tittle {
    margin-bottom: 50px;
}

.panel-de-residencias-content .woocommerce-orders-table__cell {
    text-align: center;
}

.principal_orders_display {
    display: flex;
    flex-direction: column;
}

.principal-orders-display_row-1,
.principal-orders-display_row-2 {
    margin-bottom: 20px; 
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.principal-orders-container {
    border-radius: 0px;
    padding: 20px;
    flex: 1;
    border: 1px solid #aaa;
    text-align: center;
    font-size: 1.2rem;
}

p.principal-orders-title,
p.secundary-orders-title {
    font-weight: 600;
}

.secundary_orders_display {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.secundary-orders-container {
    border-radius: 0px;
    padding: 7px;
    flex: 1;
    border: 1px solid #aaa;
    text-align: center;
}

p.secundary-orders-number {
    margin: 0;
}

.woocommerce table.orders_table a {
    background: #b9a081;
    padding: 5px 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

@media(max-width: 1024px) {
	.panel-residencias_tittle {
		margin-bottom: 0;
	}
	.principal-orders-display_row-1, 
	.principal-orders-display_row-2 {
		flex-direction: column;
	}
}