.doctors-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.doctors-table th,
.doctors-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    color: #0f2b4e;
    font-family: "Roboto Condensed", sans-serif;
}

.doctors-table th {
    background-color: #0f2b4e;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.doctors-table tr {
    background-color: #ffffff;
}

.details-btn {
    cursor: pointer;
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #0f2b4e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
}

.details-btn.edit {
    background-color: #28a745;
    border-radius: 15px;
}
.details-btn.edit:hover
 {
    box-shadow:0 0 10px #168931;
 }


.details-btn.delete {
    background-color: #dc3545;
    border-radius: 15px;
}
.details-btn.delete:hover
 {
    box-shadow:0 0 10px #922530;
 }

.search-bar {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.search-bar input {
    padding: 10px;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 15px;
    font-size: 16px;
    color: #0f2b4e;
}

.search-bar .search-btn {
    padding: 10px 15px;
    margin-left: 10px;
    background-color: #0f2b4e;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 16px;
}
.search-bar .search-btn:hover
{
    box-shadow: 0 0 10px #0F2B4E;
}

.add-btn {
    background: #0F2B4E;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 15px;
    cursor: pointer;
    border: none;
    right: 10px;
    top: 15px;
    position: absolute
}
.add-btn:hover
{
    box-shadow: 0 0 10px #0F2B4E;
}
