﻿/* 🔹 الخط العربي الرسمي */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');

html {
    font-size: 14px;
    direction: rtl;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Tajawal', sans-serif;
    margin-bottom: 60px;
    background-color: #f8f9fa; /* رمادي هادئ رسمي */
    color: #212529;
    text-align: right;
}

/* 🔹 Bootstrap Focus – أزرق هادئ */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem #ffffff, 0 0 0 0.25rem rgba(13, 110, 253, 0.35);
}

/* 🔹 Layout */
html {
    position: relative;
    min-height: 100%;
}

/* 🔹 Form Floating عربي */
.form-floating > label {
    right: 0;
    left: auto;
    text-align: right;
    padding-right: 1rem;
    padding-left: 0.75rem;
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext {
    text-align: right;
}

    .form-floating > .form-control-plaintext::placeholder,
    .form-floating > .form-control::placeholder {
        color: #6c757d;
        text-align: right;
    }

    .form-floating > .form-control-plaintext:focus::placeholder,
    .form-floating > .form-control:focus::placeholder {
        text-align: right;
    }

/* 🔹 تحسينات عامة للواجهات العربية */
input,
select,
textarea {
    direction: rtl;
}

.table th,
.table td {
    vertical-align: middle;
    text-align: right;
}

/* 🔹 أزرار رسمية */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-danger {
    background-color: #dc3545;
}

.btn-success {
    background-color: #198754;
}

/* 🔹 رسائل وتنبيهات */
.alert {
    border-radius: 0.5rem;
    font-weight: 500;
}
