.board-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #2563eb;
}

.board-header {
    margin-bottom: 2rem;
}

.board-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.board-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: -0.025em;
}

.admin-buttons {
    display: flex;
    gap: 0.75rem;
}

.edit-btn,
.delete-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    color: white;
    transition: all 0.2s;
}

.edit-btn {
    background-color: #f59e0b;
}

.edit-btn:hover {
    background-color: #d97706;
}

.delete-btn {
    background-color: #ef4444;
}

.delete-btn:hover {
    background-color: #dc2626;
}

.board-description {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.5;
}

.posts-container {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.posts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.posts-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.view-all {
    color: #3b82f6;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.view-all:hover {
    color: #2563eb;
}

.post-item {
    padding: 1.25rem 1.5rem;
    transition: background-color 0.2s;
    border-bottom: 1px solid #f3f4f6;
}

.post-item:last-child {
    border-bottom: none;
}

.post-item:hover {
    background-color: #f9fafb;
}

.post-item a {
    text-decoration: none;
    color: inherit;
}

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

.post-title {
    font-weight: 500;
    color: #1f2937;
}

.post-views {
    font-size: 0.875rem;
    color: #6b7280;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #6b7280;
}

.empty-posts {
    padding: 3rem 1.5rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.action-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.back-btn {
    background-color: #6b7280;
}

.back-btn:hover {
    background-color: #4b5563;
}

.create-btn {
    background-color: #3b82f6;
}

.create-btn:hover {
    background-color: #2563eb;
}
