body {
    font-family: 'Malgun Gothic', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.header {
    background: linear-gradient(135deg, #b9f1ff 0%, #6467ff 100%);
    color: white;
    padding: 20px;
    text-align: center;
}

.header h1 {
    margin: 0;
    font-size: 24px;
}

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

.board-table th {
    background-color: #f8f9fa;
    padding: 15px 10px;
    text-align: center;
    border-bottom: 2px solid #dee2e6;
    font-weight: bold;
}

.board-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #dee2e6;
    text-align: center;
}

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

.song-title {
    font-weight: bold;
    color: #333;
}

.artist {
    color: #666;
}

.search-filter-area {
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
}

.search-box {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 10px 15px;
    border: 2px solid #dee2e6;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: #667eea;
}

.board-info {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    text-align: right;
    color: #666;
    font-size: 14px;
}