.trigger-add-patient-form{
    background-color: black !important;
    border: 1px solid black !important;
    padding: 8px 16px !important;
    color: #fff !important;
    border-radius: 0 !important;
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
}
.patient-cards{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.patient-details-box{
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid #ccc; 
    border-radius: 0; 
    padding: 15px; 
    width: 100%;
}
.patient-details-top{
    display: grid;
    grid-template-columns: 4fr min-content min-content;
    gap: 4px;
    align-items: center;
}
.patient-details-bottom{
    display: grid;
    grid-template-columns: 1fr;
}
.patient-detail-action{
    background-color: black !important;
    border: 1px solid black !important;
    padding: 8px 16px !important;
    color: #fff !important;
    border-radius: 0 !important;
}


.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-items: center;
}

.modal.hidden {
    display: none;
}



.close-button {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 1.25rem;
    cursor: pointer;
    background: none;
    border: none;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0;
    box-sizing: border-box;
}

.form-actions {
    text-align: right;
    margin-top: 1.5rem;
}

.submit-edit-patient {
    background-color: black !important;
    border: 1px solid black !important;
    padding: 8px 16px !important;
    color: #fff !important;
    border-radius: 0 !important;
    width: 100%;
}

.patient-search-form{
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 10px !important;
    gap: 10px;
}

.patient-search-form-actions button{
    background-color: black !important;
    border: 1px solid black !important;
    padding: 8px 16px !important;
    color: #fff !important;
}

.patient-search-form-actions{
    display: flex;
    gap: 5px;
}

.prescription-list {
    list-style: none;
    padding-left: 0;
}

.prescription-list li {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

.duplicate-prescription-button{
    background-color: black !important;
    border: 1px solid black !important;
    padding: 8px 16px !important;
    color: #fff !important;
    border-radius: 0 !important;
    width: 100%;
}

.sticky-button {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    height: 55px;
}

.patient-tab-create-prescription {
    background-color: black !important;
    border: 1px solid black !important;
    padding: 8px 16px !important;
    color: #fff !important;
    width: 100%;
    height: 100%;
}

.patient-detail-view,
.patient-detail-edit{
    background-color: black !important;
    border: 1px solid black !important;
    color: #fff !important;
    font-size: 13px;
    border-radius: 0;
    padding: 0 !important;
    height: 35px;
    width: 35px;
}

.patient-detail-view svg,
.patient-detail-edit svg{
height: 15px;
width: 15px;
}

.icon-pencil,
.icon-eye{
    align-items: center;
}
.delete-patient-button{
    background-color: red !important;
    border: 1px solid red !important;
    color: #fff !important;
    font-size: 14px;
    border-radius: 0;
    width: 100%;
    margin: 0 !important;
    font-weight: 300;
    height: 30px;
}
footer{
    display: none;
}

.patient-search-buttons{
    font-size: 14px;
    font-weight: 300;
}

.patient-search{
    min-height: 30px;
}

.patient-tab-modal-content{
    width: 100% !important;
    padding: 10px;
    max-height: 70vh;
}

.patient-form-fields{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.patient-tab-modal-content .close-button{
    top: 6.5rem !important;
}