body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

.portal-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.header h1 {
    font-weight: 700;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.appointments, .medical-records {
    margin-top: 30px;
}

.appointments h2, .medical-records h2 {
    font-weight: 600;
    margin-bottom: 20px;
}

.appointment-item, .record-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
}

.appointment-item:last-child, .record-item:last-child {
    border-bottom: none;
}

.item-details p {
    margin: 0;
}

.item-date {
    font-weight: 600;
}
