:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --warning-color: #e74c3c;
    --success-color: #2ecc71;
}



html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


/* تنسيقات عامة */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* تنسيقات البطاقات */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.card-header {
    font-weight: 600;
}

/* تنسيقات الجداول */
.table {
    margin-bottom: 0;
}

    .table thead th {
        background-color: #2c3e50;
        color: white;
        font-weight: 500;
    }

.table-hover tbody tr:hover {
    background-color: rgba(52, 152, 219, 0.1);
}

/* تنسيقات الأزرار */
.btn {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
}

    .btn-primary:hover {
        background-color: #2980b9;
        border-color: #2980b9;
    }

/* تنسيقات التنبيهات */
.alert {
    border-radius: 8px;
}

/* تنسيقات حقول الإدخال */
.form-control, .form-select {
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    border: 1px solid #ddd;
}

    .form-control:focus, .form-select:focus {
        border-color: #3498db;
        box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
    }

/* تنسيقات البادجات */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}


<style >
/* تنسيقات عامة */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* تنسيقات الجدول */
.table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

    .table thead tr {
        background-color: #007bff;
        color: white;
    }

    .table th, .table td {
        padding: 12px 15px;
        text-align: left;
    }

    .table tbody tr {
        border-bottom: 1px solid #dddddd;
    }

        .table tbody tr:nth-of-type(even) {
            background-color: #f3f3f3;
        }

        .table tbody tr:last-of-type {
            border-bottom: 2px solid #007bff;
        }

        .table tbody tr:hover {
            background-color: #e9f5ff;
        }

/* تنسيقات الأزرار */
.btn {
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
}

    .btn-primary:hover {
        background-color: #0069d9;
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

.btn-danger {
    background-color: #dc3545;
    color: white;
    border: none;
}

    .btn-danger:hover {
        background-color: #c82333;
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

/* تنسيقات البطاقات */
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

/* تنسيقات حقول الإدخال */
.form-control {
    border-radius: 4px;
    border: 1px solid #ced4da;
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
}

    .form-control:focus {
        border-color: #80bdff;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

/* تنسيقات العنوان */
.page-header {
    color: #007bff;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

/* تنسيقات التنقل */
.action-links a {
    margin-right: 10px;
    color: #007bff;
    text-decoration: none;
}

    .action-links a:hover {
        text-decoration: underline;
    }

/* رسائل التحذير */
.text-danger {
    color: #dc3545;
    font-size: 0.9em;
}

/* تنسيقات تفاصيل المستخدم */
.user-details dt {
    font-weight: bold;
    color: #007bff;
}

.user-details dd {
    margin-bottom: 15px;
}

</style >