/* Container principal dos boletos do aluno */
.educare-boletos-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    max-width: 800px;
    margin: 20px auto;
}

/* Aviso para usuário não logado ou sem boletos */
.educare-boletos-aviso {
    background-color: #fff3cd;
    border-left: 4px solid #ffeeba;
    padding: 15px;
    border-radius: 4px;
    color: #856404;
}

/* Card individual de cada boleto */
.boleto-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease-in-out;
}
.boleto-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Cabeçalho do Card */
.boleto-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.boleto-turma {
    font-weight: 600;
    font-size: 1.1em;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 8px;
}
.boleto-turma .dashicons {
    color: #4a5568;
}

/* Badge de Status */
.boleto-status {
    padding: 5px 12px;
    border-radius: 9999px; /* pill shape */
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.status-pago { background-color: #c6f6d5; color: #2f855a; }
.status-pendente { background-color: #fed7d7; color: #c53030; }
.status-vencido { background-color: #fefcbf; color: #b7791f; }


/* Corpo do Card */
.boleto-body {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.info-item {
    display: flex;
    flex-direction: column;
}
.info-label {
    font-size: 0.85em;
    color: #718096;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.info-value {
    font-size: 1.1em;
    font-weight: 500;
    color: #2d3748;
}

/* Rodapé e Botão de Download */
.boleto-footer {
    padding: 15px 20px;
    background-color: #f8fafc;
    text-align: right;
    border-top: 1px solid #e2e8f0;
}
.download-btn {
    background-color: #4299e1;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}
.download-btn:hover {
    background-color: #2b6cb0;
    color: white;
}