body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.board-container {
    max-width: 900px;
    margin: 40px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.board-container h1 {
    margin-bottom: 25px;
    font-size: 28px;
    color: #343a40;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 10px;
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.search-form select,
.search-form input[type="text"],
.search-form button {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ced4da;
    border-radius: 6px;
}

.search-form button {
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.search-form button:hover {
    background-color: #0056b3;
}

.board-table {
    width: 100%;
    border-collapse: collapse;
}

.board-table th, .board-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
    font-size: 15px;
}

.board-table th {
    background-color: #f1f3f5;
    color: #495057;
}

.board-table tr:hover {
    background-color: #f8f9fa;
}

.board-table a {
    text-decoration: none;
    color: #007bff;
}

.board-table a:hover {
    text-decoration: underline;
}

/* 반응형 */
@media (max-width: 600px) {
    .search-form {
        flex-direction: column;
    }

    .board-table th, .board-table td {
        font-size: 13px;
        padding: 10px;
    }
}
