﻿/* تنسيق بطاقات النماذج العصرية */
.container-form-card {
    max-width: 1150px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
}

.section-title {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fef3c7;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
    margin: 25px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* تنسيق الجداول المودرن */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

    table td {
        padding: 12px 15px;
        border-bottom: 1px solid #f1f5f9;
        font-size: 14.5px;
    }

        table td.label {
            background-color: #f8fafc;
            font-weight: 700;
            color: #1e293b;
            width: 22%;
        }

.form-control {
    border-radius: 8px !important;
    border: 1.5px solid #cbd5e1 !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    transition: all 0.3s !important;
}

    .form-control:focus {
        border-color: #f59e0b !important;
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.2) !important;
    }

.btn-submit {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 800 !important;
    transition: all 0.3s !important;
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3) !important;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(217, 119, 6, 0.45) !important;
    }
