/* ============================================================
   FLIGHT VERIFICATION
   ============================================================ */
.flight-verify-row {
    display: flex;
    gap: 8px;
}
.flight-input {
    flex: 1;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: var(--input-bg);
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.flight-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}
.flight-input::placeholder {
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0;
}
.btn-verify-flight {
    padding: 10px 18px;
    border: none;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #0984e3, #74b9ff);
    color: white;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition-fast), transform 0.15s ease, box-shadow var(--transition-fast);
    box-shadow: 0 4px 14px rgba(9,132,227,0.25);
}
.btn-verify-flight:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(9,132,227,0.35);
}
.btn-verify-flight:disabled {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    cursor: default;
    transform: none;
}

.flight-status {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    min-height: 18px;
}
.flight-status.verified { color: #27ae60; }
.flight-status.error { color: #d63031; }

/* Verified Flight badge on cards */
.badge-flight {
    background: rgba(9,132,227,0.1) !important;
    color: #0984e3 !important;
}

/* ============================================================
   ADMIN PANEL & VERIFICATION SYSTEM
   ============================================================ */

/* Badges row */
.card-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

/* Trust badges */
.badge-pending {
    background: rgba(241,196,15,0.12) !important;
    color: #f39c12 !important;
}
.badge-verified {
    background: rgba(39,174,96,0.12) !important;
    color: #27ae60 !important;
}
.badge-rejected {
    background: rgba(214,48,49,0.12) !important;
    color: #d63031 !important;
}

/* Rejection reason */
.rejection-reason {
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(214,48,49,0.06);
    border: 1px solid rgba(214,48,49,0.15);
    border-radius: 10px;
    font-size: 12px;
    color: #d63031;
    line-height: 1.4;
}

/* File input */
.file-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1.5px dashed var(--border);
    background: var(--input-bg);
    color: var(--text);
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    transition: border-color var(--transition-fast);
}
.file-input:hover { border-color: var(--accent); }
.file-input::-webkit-file-upload-button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 10px;
}

/* Upload done message */
.upload-done {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(39,174,96,0.08);
    border: 1px solid rgba(39,174,96,0.2);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 14px;
}

/* Success modal */
.success-modal-content {
    text-align: center;
    max-width: 400px;
}
.success-icon {
    font-size: 52px;
    margin-bottom: 10px;
}
.success-modal-content h2 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}
.success-modal-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.5;
}
/* ============================================================
   CHAT LOAD MORE BUTTON
   ============================================================ */
.chat-load-more {
    text-align: center;
    padding: 8px 16px;
    margin: 8px auto;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-glow);
    border: 1px solid rgba(0,114,255,0.2);
    border-radius: 50px;
    cursor: pointer;
    display: table;
    letter-spacing: 0.3px;
    transition: background var(--transition-fast), transform 0.15s ease;
    user-select: none;
}
.chat-load-more:hover {
    background: rgba(0,114,255,0.15);
    transform: translateY(-1px);
}
.chat-load-more:active {
    transform: scale(0.97);
}
/* ============================================================
   READ RECEIPT — წაიკითხა ✓✓
   ============================================================ */
.chat-read-receipt {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-align: right;
    margin-top: 2px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
.chat-read-receipt.read {
    color: #a8d8ff;
}
.chat-bubble.mine .chat-read-receipt {
    color: rgba(255,255,255,0.5);
}
.chat-bubble.mine .chat-read-receipt.read {
    color: #a8d8ff;
}