body {
    padding-top: 5rem;
    background-color: #f8f9fa;
}
.form-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.navbar-hide {
    top: -56px;
}

.navbar-custom {
    background-color: #99c01c;
}

.financial-dashboard {
    font-family: Arial, sans-serif;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.dashboard-title {
    color: #2c5282;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.financial-table {
    width: 100%;
    margin-top: 1rem;
    border: 1px solid #ccc;
    background-color: white;
}

.financial-table thead th {
    background-color: #e8f3dc !important;
    border: 1px solid #ccc !important;
    color: #333;
    font-weight: 600;
    padding: 10px 8px;
    white-space: nowrap;
}

.financial-table tbody tr td {
    border: 1px solid #ccc !important;
    padding: 8px;
}

.financial-table tbody tr:hover {
    background-color: #f8f9fa;
}

.financial-table .currency {
    text-align: right;
    font-family: 'Courier New', monospace;
}

.financial-table .number {
    text-align: right;
}

.table-container {
    overflow-x: auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Estilo para mensajes de alerta */
.alert {
    margin-bottom: 1rem;
    border-radius: 8px;
}


.cursor-pointer {
    cursor: pointer;
}

.child-row {
    transition: all 0.3s ease;
}

.expandable-row i {
    transition: transform 0.3s ease;
}

.expandable-row.expanded i {
    transform: rotate(90deg);
}
