#anace-portal {
    font-family: inherit;
    max-width: 800px;
    margin: 0 auto;
}

#anace-login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
}

#anace-login-form label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

#anace-cua {
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    width: 100%;
}

#anace-login-form button {
    padding: 12px 24px;
    background-color: transparent;
    color: #C4194C;
    border: 1px solid #C4194C;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

#anace-login-form button:hover {
    background-color: #C4194C;
    color: #fff;
}

#anace-login-form button:disabled {
    background-color: #f0f0f0;
    color: #999;
    border-color: #ccc;
    cursor: not-allowed;
}

.anace-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #C4194C;
    margin-bottom: 4px;
}

.anace-card p {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
}

.anace-horas {
    background: #f5f5f0;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 30px;
}

.anace-hora-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 15px;
}

.anace-barra {
    background: #ddd;
    border-radius: 20px;
    height: 10px;
    margin: 8px 0 16px;
    overflow: hidden;
}

.anace-barra-fill {
    background: #C4194C;
    height: 100%;
    border-radius: 20px;
    transition: width 0.5s ease;
}

.anace-tabla {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.anace-tabla thead tr {
    background-color: #C4194C;
    color: #fff;
}

.anace-tabla thead th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.anace-tabla tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.anace-tabla tbody tr:nth-child(even) {
    background-color: #f9f9f7;
}

.anace-tabla tbody td {
    padding: 12px 16px;
    color: #333;
}

.anace-pdf-link {
    color: #C4194C;
    font-weight: 600;
    text-decoration: underline;
    white-space: nowrap;
    display: inline-block;
    min-width: 110px;
}

.anace-pdf-link:hover {
    color: #9e1340;
}

.anace-tabla {
    table-layout: fixed;
}

.anace-tabla th:first-child,
.anace-tabla td:first-child {
    width: 40%;
}

.anace-tabla th:nth-child(2),
.anace-tabla td:nth-child(2) {
    width: 35%;
}

.anace-tabla tbody td:last-child {
    width: 25%;
    min-width: unset;
}

.anace-tabla-certificado {
    width: 75%;
}

.anace-tabla-certificado {
    table-layout: fixed;
}

.anace-tabla-certificado tbody td {
    background-color: #EBC8CA !important;
}