  body {
            background: linear-gradient(135deg, #f8f9fa, #eef1f4);
            font-family: 'Cairo', sans-serif;
        }

        .card {
            border-radius: 16px;
            border: none;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
        }

        .card-title {
            font-weight: 700;
            color: #198754;
        }

        label.form-label {
            font-weight: 600;
            color: #444;
        }
      body {
    font-family: 'Tajawal', sans-serif !important;
}

/* Exclude icons from font changes */
.fas, .far, .fab {
    font-family: "Font Awesome 6 Free" !important;
}
        input.form-control,
        select.form-select {
            border-radius: 8px;
        }

        .form-control.is-invalid,
        .form-select.is-invalid {
            border-color: #dc3545 !important;
        }

        .invalid-feedback {
            display: block;
            font-weight: 500;
        }

        .preview-box img {
            max-width: 130px;
            max-height: 100px;
            object-fit: cover;
            border-radius: 8px;
            border: 1px solid #dee2e6;
            margin-top: 6px;
        }

        .btn-success {
            background-color: #198754;
            border: none;
            transition: 0.3s;
        }

        .btn-success:hover {
            background-color: #157347;
        }

        .alert-warning-custom {
            background: #fff3cd;
            border: 1px solid #ffeeba;
            color: #d9534f;
            border-radius: 8px;
            padding: 10px 15px;
            display: flex;
            align-items: center;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .alert-warning-custom i {
            color: #007bff;
            font-size: 1.8rem;
            margin-left: 10px;
        }

        .order-modal {
            background: #f8d302;
            color: #000;
            width: 90%;
            max-width: 650px;
            border-radius: 18px;
            padding: 35px 25px;
            font-weight: bold;
            animation: slideUp 0.4s ease-out;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            margin: 30px auto;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .order-modal::-webkit-scrollbar {
            width: 8px;
        }

        .order-modal::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 4px;
        }

        .custom-alert {
    background-color: red;
    color: #fff;
    font-size: 12px;
    padding: 0px 8px;
    border-radius: 6px;
    white-space: nowrap;
}
#amount_yuan {
    background-color: #e0e0e0;
    cursor: not-allowed;
}

form {
    direction: rtl;
}

form label {
    text-align: right;
}

.form-check {
    display: flex;
    flex-direction: row-reverse !important;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.custom-alert {
    background-color: red;
    color: #fff;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 6px;
}

input[readonly] {
    background-color: #e0e0e0;
    cursor: not-allowed;
}

.text-danger {
    font-size: 14px;
}

.preview-box {
    margin-top: 8px;
}

#submitBtn {
    display: inline-block;
}

