﻿/* =============================
   Inspection Edit Page Style
   مأخوذ من شاشة طلب المعاينة
============================= */

/* الخلفية العامة */
.inspection-wrapper {
    padding: 20px;
    background: #1b6ec2;
}

/* كارت المعاينة */
.inspection-card {
    width: 900px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #ffffff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 700;
}

/* الهيدر */
.inspection-header {
    background: #1e3a8a;
    color: #fff;
    padding: 15px;
    font-size: 20px;
    font-weight: 700;
}

.inspection-header-title {
    font-size: 20px;
    font-weight: 600;
}

/* جسم الصفحة */
.inspection-body {
    padding: 16px 16px 20px 16px;
}

/* السطر العلوي */
.inspection-top-row {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 7px;
}

.top-item {
    flex: 0 0 auto;
}

/* قائمة الفني */
.technician-list {
    background-color: #f8f9fa;
}

/* الأزرار */
.btn-search {
    border-color: #6c757d;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

    .btn-search:hover {
        background-color: #ff9800;
        border-color: #ff9800;
        color: #fff;
    }

.btn-save-request {
    background-color: #1861ac;
    border-color: #007bff;
    color: #fff;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

    .btn-save-request:hover,
    .btn-save-request:focus {
        background-color: #ff9800;
        border-color: #ff9800;
        color: #fff;
    }

/* زر العرض */
.view-btn {
    background-color: #0d6efd !important;
    color: white !important;
    border: none;
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

    .view-btn:hover,
    .view-btn:active {
        background-color: #8b0000 !important;
    }

/* خط الحقول */
.inspection-card input,
.inspection-card select,
.inspection-card textarea {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    font-weight: 600;
}

/* عناوين الليبل */
.inspection-card label {
    font-weight: 700;
}

/* زر الحفظ الرئيسي */
.save-main-btn {
    padding: 12px 70px;
    font-size: 1.05rem;
    border-radius: 30px;
    transition: all 0.2s ease;
}

    .save-main-btn:active {
        background-color: #dc3545 !important; /* أحمر */
        border-color: #dc3545 !important;
        transform: scale(0.97);
    }


    .save-main-btn:focus {
        box-shadow: none;
    }

