.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.create-patient-button-wrapper{
        text-align: center;
        padding-top: 20px;
}
.patient-modal-header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 10px 0;
}
.patient-modal-header h2{
    color: var(--pharmawp-color-blue) !important;
    font-weight: 600 !important;
    text-align: center;
}

.close-button {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.patient-dob{
    border-radius: 0;
    border: 1px solid black;
    padding: 5px 10px;
}
 
  .delete-patient-button{
    padding: 8px 16px !important;
  }



.custom-patient-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropbtn {
    background-color: lightgrey;
    color: black;
    padding: 10px;
    font-size: 14px;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
    background-color: #3e8e41;
}

.dropdown-content {
    position: absolute;
    background-color: #f6f6f6;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    border: 1px solid #ddd;
    z-index: 1;
}
.dropdown-content {
    display: none;
}

.dropdown-content.show {
    display: block;
}

.dropdown-content a {
    color: black;
    padding: 10px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown-search {
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #ccc;
}

.dropdown-content.show {
    display: block;
}
