.mbc-board {
    max-width: 1200px;
    margin: 20px auto;
}

.mbc-board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mbc-btn {
    padding: 10px 20px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.mbc-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mbc-board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.mbc-board-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.mbc-board-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.mbc-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mbc-item-content {
    padding: 15px;
}

.mbc-item-title {
    font-weight: bold;
    margin-bottom: 8px;
}

.mbc-item-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.mbc-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.mbc-vote-btn {
    padding: 5px 10px;
    background: #10b981;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.mbc-votes {
    color: #667eea;
    font-weight: bold;
}

.mbc-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.mbc-modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 30px;
    width: 500px;
    max-width: 90%;
    border-radius: 12px;
    position: relative;
}

.mbc-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
}

.mbc-field {
    margin-bottom: 15px;
}

.mbc-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.mbc-field input,
.mbc-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
