/* Shared Component Styles for ClinicaApp */

/* Clickable List Item - Used in Patients/View.razor and MedicalRecords/Detail.razor */
.clickable-list-item {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.clickable-list-item:hover {
    background-color: rgba(0, 0, 0, 0.04);
}
