body {
    font-family: system-ui, sans-serif;
    background-color: #f0f0f0;
    color: #222;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #ddd;
    padding: 10px;
    text-align: center;
}

.nav-menu {
    margin: 15px 0;
}

.nav-menu a {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-menu a:hover {
    background-color: #e0e0e0;
}

.nav-menu a.active {
    background-color: #007BFF;
    color: white;
}

.container {
    width: 80%;
    margin: 20px auto;
}

.clinic-list {
    border: 1px solid #ccc;
    padding: 10px;
}

.clinic {
    margin-bottom: 10px;
    padding: 5px;
    border-bottom: 1px dotted #ccc;
}

.clinic a {
    color: #007BFF;
    text-decoration: none;
}

.column-names {
    display: flex;
    font-weight: bold;
    background-color: #007BFF;
    color: white;
    padding: 10px 5px;
    border-radius: 4px 4px 0 0;
}

.clinic {
    display: flex;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
}

.clinic:nth-child(even) {
    background-color: #f9f9f9;
}

.column-names span,
.clinic span {
    display: inline-block;
    padding: 10px 5px;
    flex: 1;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    border-right: 1px solid #ddd;
}

.column-names span {
    font-weight: bold;
}

.clinic span.name {
    font-weight: 500;
}

.clinic a {
    padding: 10px 5px;
    flex: 1;
    text-align: center;
    display: block;
    border-right: 1px solid #ddd;
}

.clinic span:last-child,
.column-names span:last-child {
    border-right: none;
}

.flag {
    font-size: 1.2em;
}

.category h2 {
    margin: 20px 0 10px;
    border-bottom: 2px solid #ddd;
}

.response-time,
.next-apt {
    font-size: 0.9em;
    color: #666;
}

.disclaimer {
    font-size: 0.8em;
    color: #777;
    margin-bottom: 5px;
}

.article-link {
    margin: 10px 0;
}

.article-link a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.article-link a:hover {
    text-decoration: underline;
}

.article {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.article h2 {
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.article-content {
    line-height: 1.6;
}

.article-content p {
    margin-bottom: 15px;
}

.article-content a {
    color: #007BFF;
    text-decoration: none;
}

.article-content a:hover {
    text-decoration: underline;
}
