.agendamento-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
}

.agendamento-card .card-header {
    font-weight: 600;
    border-bottom: none;
}

.agendamento-card .card-title {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--app-success);
}

.agendamento-card .card-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
}

.agendamento-card .list-group-item {
    padding-left: 0;
    padding-right: 0;

    border-bottom: 1px solid var(--app-border-color); 
}
.agendamento-card .list-group-item:last-child {
    border-bottom: 0;
}

.agendamento-card .badge {
    font-size: 0.9rem;
    padding: 0.4em 0.6em;
}

.agendamento-card.passado {
    opacity: 0.75;
    background-color: #f8f9fa;
}

.agendamento-card.passado .card-title {
    color: var(--app-text-muted);
}

.agendamento-card.passado .card-body {
    text-decoration: line-through;
}
.agendamento-card.passado .badge {
    text-decoration: none;
}

#agendamentos-container > [class*="col-"] {
  margin-bottom: 1.5rem;
}