/* termine-block.css */
.ime-termine-block {
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    height: 450px;
    overflow-y: auto; /* Add scroll if content exceeds height */
    box-sizing: border-box;
}

.ime-termine-block h2 {
    color: #00539f;
    font-size: 1.3em;           /* 比默认 h2 小一号，可调为 1.3em */
    font-weight: bold;
    margin-top: 10px;           /* 缩小顶部间距 */
    margin-bottom: 8px;         /* 缩小底部间距 */
    padding-top: 0;             /* 移除默认 padding */
    padding-bottom: 0;
}

.ime-termine-block h3 {
    color: #333;
    font-size: 1.2em; 
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 8px;
    padding-top: 0;
    padding-bottom: 0;
}

.ime-termine-block div {
    margin-bottom: 8px;
}

.ime-termine-block a {
    color: #00539f;
    text-decoration: none;
}

.ime-termine-block a:hover {
    text-decoration: underline;
}