/* ===== CSS DÀNH RIÊNG CHO TRANG ĐĂNG TIN & SỬA TIN ===== */

/* Khung bao quanh chính */
.posting-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); /* Thêm bóng đổ nhẹ cho đẹp */
}

/* Tiêu đề trang */
.posting-container h1 {
    color: #0056b3;
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-size: 1.8rem;
}

/* Trạng thái Loading / Error */
#loading-state, #error-state {
    margin: 20px 0;
    font-size: 1.1em;
}
.status-error {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 15px;
    border-radius: 4px;
}

/* Lưới bố cục Form */
#listing-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Chia 2 cột */
    gap: 20px; /* Khoảng cách giữa các ô */
}

/* Nhóm input */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

/* Phần tử chiếm hết chiều rộng (Mô tả, Hình ảnh) */
.form-group.full-width {
    grid-column: 1 / -1;
}

/* Label */
.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.95em;
}

/* Các ô nhập liệu (Input, Select, Textarea) */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit;
    box-sizing: border-box; /* Quan trọng để padding không làm vỡ layout */
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Textarea mô tả */
textarea {
    min-height: 150px;
    resize: vertical; /* Cho phép kéo giãn chiều cao */
    line-height: 1.5;
}

/* Bộ đếm ký tự */
#description-char-count {
    margin-top: 5px;
    font-size: 0.85em;
}

/* === PHẦN UPLOAD ẢNH === */
#image-upload-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
}

/* Container chứa ảnh preview */
#image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

/* Từng ảnh preview */
.img-preview {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Trạng thái upload */
#upload-status {
    margin-top: 10px;
    font-style: italic;
    color: #666;
}

/* Nút hành động (Đăng tin) */
.form-actions {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start; /* Căn nút sang trái */
}

.form-actions button {
    padding: 12px 30px;
    font-size: 1.1em;
}

/* === RESPONSIVE (DI ĐỘNG) === */
@media (max-width: 768px) {
    .posting-container {
        margin: 10px;
        padding: 15px;
    }

    #listing-form .form-grid {
        grid-template-columns: 1fr; /* Chuyển về 1 cột trên điện thoại */
        gap: 15px;
    }

    .form-actions button {
        width: 100%; /* Nút full màn hình trên mobile */
    }
}