/* board.css */
:root {
    --carrot-orange: #ff7e00;
    /* 당근색 */
    --carrot-light: #fff0e0;
    --carrot-dark: #e66a00;
}

.board-title {
    color: #333;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.carrot-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ff7e00' d='M64 480H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64zM96 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32s14.3-32 32-32z'/%3E%3C/svg%3E");
    /* Placeholder Carrot SVG or use uploaded image later */
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}

/* uploaded_media 사용은 나중에 JS나 img 태그로 처리하거나, 배경으로 넣음 */

.btn-carrot {
    background-color: var(--carrot-orange);
    color: white;
    border: none;
}

.btn-carrot:hover {
    background-color: var(--carrot-dark);
    color: white;
}

.board-table thead th {
    background-color: var(--carrot-light);
    border-bottom: 2px solid var(--carrot-orange);
    color: #333;
    font-weight: 600;
}

.board-table tbody tr:hover {
    background-color: #fafafa;
}

.pagination .page-link {
    color: var(--carrot-orange);
}

.pagination .page-item.active .page-link {
    background-color: var(--carrot-orange);
    border-color: var(--carrot-orange);
    color: white;
}

/* View Page Styles */
.board-view-header {
    border-bottom: 2px solid var(--carrot-orange);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.board-view-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.board-view-info {
    color: #777;
    font-size: 0.9rem;
}

.board-view-content {
    min-height: 200px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.board-view-files,
.board-view-links {
    background-color: #f9f9f9;
    padding: 15px;
    margin-top: 10px;
    border-radius: 5px;
}

.file-icon {
    color: var(--carrot-orange);
    margin-right: 5px;
}