.client-main {
    padding-top: 5rem;
    /* o más si el navbar es más alto */
}

.client_table {
    background-color: #fff;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.client_table tr {
    transition: background-color 0.2s ease;
}

.client_table tr:hover {
    background-color: #f6f9fc;
}

.client_table td,
.client_table th {
    vertical-align: middle !important;
}

.pointer-cursor {
    cursor: pointer;
}

.btn-next-step {
    border-radius: .5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-next-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

input#client_parent:focus {
    border-color: #00945e;
    box-shadow: 0 0 0 0.2rem rgba(0, 148, 94, 0.25);
}

input#client_mail:focus {
    border-color: #00945e;
    box-shadow: 0 0 0 0.2rem rgba(0, 148, 94, 0.25);
}

.btn-generate-slip {
    background-color: #28a745;
    /* verde éxito */
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-generate-slip:hover {
    background-color: #218838;
}

.btn-pay-online {
    background-color: #007bff;
    /* azul estándar */
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-pay-online:hover {
    background-color: #0056b3;
}