.appointments-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.appointment-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    overflow: hidden;
    padding-right: 8px;
}

.appointment-date {
    width: 60px;
    background: #f6f8fa;
    text-align: center;
    padding: 8px 6px;
    font-weight: 600;
}

.appointment-date .day {
    font-size: 13px;
    color: #6c757d;
}

.appointment-date .date {
    font-size: 18px;
}

.appointment-date .time {
    font-size: 14px;
    color: #0d6efd;
}

.appointment-body {
    flex: 1;
    padding: 16px;
}

.appointment-title {
    font-size: 16px;
    font-weight: 600;
}

.appointment-meta {
    font-size: 14px;
    color: #555;
    margin: 6px 0;
}

.appointment-status {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.appointment-status.pending {
    background: #fff3cd;
    color: #856404;
}

.appointment-status.confirmed {
    background: #d1e7dd;
    color: #0f5132;
}

.appointment-actions {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}