@charset "UTF-8";

/* =========================================
   Board / View Styles
   Target: view.jsp (Notice, News, etc.)
   ========================================= */

.view-title-area {
    border-bottom: 2px solid #073a7e;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.view-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.view-meta {
    font-size: 0.9rem;
    color: #666;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.view-meta span {
    display: flex;
    align-items: center;
}

.view-meta i {
    margin-right: 5px;
    color: #073a7e;
}

.view-content {
    min-height: 300px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Readonly Textarea for View */
.view-content-textarea {
    background: white !important;
    border: none !important;
    resize: none;
    box-shadow: none !important;
    width: 100%;
}

.attachment-area {
    background-color: #f1f3f5;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.btn-toolbar {
    justify-content: flex-end;
    gap: 5px;
}

/* --- Form file list (Edit pages) --- */
.file-list-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Form Section Titles (e.g. Question) --- */
.form-section-title {
    color: #073a7e;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f1f1;
    display: flex;
    align-items: center;
}

.form-section-title i {
    margin-right: 10px;
    background: #eef2f7;
    padding: 8px;
    border-radius: 50%;
    color: #073a7e;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 20px;
    font-size: 0.9rem;
}