.form-description {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 16px;
}

/* ===== List table ===== */
.table-wrapper { overflow-x: auto; }

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.data-table thead th {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 2px solid #e2e8f0;
    color: #475569;
    font-weight: 600;
    white-space: nowrap;
}

.data-table tbody td {
    padding: 10px 12px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: top;
}

.concierge-desc {
    max-width: 480px;
    color: #475569;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.badge-type {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.badge-files {
    color: #64748b;
    font-size: 13px;
    white-space: nowrap;
}

.badge-status {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.badge-status-new { background: #eff6ff; color: #1d4ed8; }
.badge-status-in-progress { background: #fff7ed; color: #c2410c; }
.badge-status-complete { background: #ecfdf5; color: #047857; }

/* ===== Empty state ===== */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #94a3b8;
}

.empty-state i { font-size: 36px; margin-bottom: 10px; display: block; }

/* ===== Create modal: dropzone + files ===== */
.required { color: #dc2626; }

.char-count {
    text-align: right;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}

.dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 28px 16px;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    color: #64748b;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}

.dropzone:hover { border-color: #93c5fd; }
.dropzone.drag-over { border-color: #3b82f6; background: #eff6ff; }
.dropzone i { font-size: 24px; }

.existing-attachments { margin-bottom: 12px; display: flex; flex-direction: column; gap: 8px; }
.existing-attachments-title { font-size: 12px; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: .03em; }

.file-list { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: #fff;
}

.file-item .file-info { display: flex; align-items: center; gap: 8px; min-width: 0; }
.file-item .file-name { font-size: 13px; color: #0f172a; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-item .file-size { font-size: 12px; color: #94a3b8; }
.btn-delete { color: #b91c1c; }
