/* kspbs.css - kspbs.php 专有样式 */

.container-m {
    margin-top: 90px;
    padding-top: 20px;
}

.classnamelist-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    padding: 20px;
}

.classnamelist {
    max-width: calc(30% - 0px);
    height: 30px;
    background-color: #007bff;
    padding: 0 10px;
    color: #fff;
    margin: 2px 5px;
    font-size: 14px;
    border-radius: 5px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.classnamelist.selected,
.classnamelist:hover {
    background-color: #ee6100;
    color: #fff;
}

.doctor-table {
    width: 100%;
    font-size: 14px;
}

.doctor-table th,
.doctor-table td {
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
}

.doctor-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.kslink {
    display: block;
    float: right;
    width: 20%;
    min-height: 30px;
    text-align: right;
    color: #666;
    font-size: 12px;
    line-height: 30px;
    margin-top: 10px;
}

.kslink:hover {
    color: #1f80ff;
}