.telephone-title {
    text-align: center;
    color: #007bff;
    padding: 10px 0px;
}

h3 {
    color: #007bff;
    margin-top: -50px;
    margin-left: 10px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-top: -10px;
} 

.table-row {
    transition: all .2s ease-in;
    cursor: pointer;
}

.table-head,
.table-data {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.table-head {
    color: #007bff !important;
}

.table-row:hover {
    background-color: #f5f5f5;
    transform: scale(1.02);
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2), -1px -1px 8px rgba(0, 0, 0, 0.2);
}

.search-bar {
    flex: 1;
    padding: 5px;
    width: 600px;
    z-index: 1;
}

.department-dropdown {
    width: 200px;
    height: 35px;
    margin-left: 10px;
}

.staff-table {
    margin-top: 30px;
    width: 100%;
}

.department-dropdown {
    font-size: 14px;
    width: 300px;
    height: 35px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    outline: none;
    cursor: pointer;
    margin-top: -36px;
}

.custom {
    position: relative;
    width: 400px;
    max-width: 100%;
    font-size: 1.15rem;
    color: #000;
    margin-top: 1.51rem;
}

.department-dropdown:hover {
    border-color: #007bff;
}

.department-dropdown:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}