/* استدعاء خط Cairo */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;900&display=swap');

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background: #f5f7fa;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* العناوين */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #2c3e50;
}

/* الجداول */
table {
    width: 90%;
    margin: 25px auto;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
    font-size: 15px;
}
th, td {
    border: 1px solid #ddd;
    padding: 12px;
}
th {
    background: #3498db;
    color: #fff;
    font-weight: 600;
}
tr:nth-child(even) {
    background: #f2f8fc;
}
tr:hover {
    background: #d6eaf8;
}

/* الأزرار */
.btn {
    display: inline-block;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
.btn-primary { background: #2980b9; }
.btn-delivered { background: #27ae60; }
.btn-action { background: #e67e22; padding: 6px 12px; font-size: 13px; border-radius: 5px; }
.btn-disabled { background: #95a5a6; pointer-events: none; }

/* البطاقات */
.card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
}

/* النماذج */
input, select, textarea, button {
    font-family: 'Cairo', sans-serif;
}
.form-label {
    font-weight: 500;
}
.alert {
    font-weight: 500;
}
