.board-section {
    padding: 4rem 0;
}

.board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.board-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
}

.board-list table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.board-list th,
.board-list td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.board-list th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.board-list td a {
    color: #333;
    text-decoration: none;
}

.board-list td a:hover {
    color: #3498db;
}

.board-detail,
.board-write {
    padding: 4rem 0;
}

.back-btn {
    display: inline-block;
    margin-bottom: 2rem;
    color: #3498db;
    text-decoration: none;
}

.back-btn:hover {
    text-decoration: underline;
}

.write-form,
.order-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-secondary {
    background: #95a5a6;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

/* Responsive */
@media (max-width: 768px) {
    .board-section,
    .board-detail,
    .board-write {
        padding: 2rem 0;
    }
    
    .board-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .board-header h2 {
        font-size: 1.75rem;
    }
    
    .board-list {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .board-list table {
        min-width: 600px;
        font-size: 0.9rem;
    }
    
    .board-list th,
    .board-list td {
        padding: 0.75rem 0.5rem;
    }
    
    .write-form,
    .order-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* iOS 줌 방지 */
        padding: 0.875rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .board-header h2 {
        font-size: 1.5rem;
    }
    
    .board-list table {
        font-size: 0.85rem;
    }
}

