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;
}
.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: #343a40;
    padding-top: 20px;
}

    .sidebar .nav-link {
        color: #ddd;
        padding: 10px;
        font-size: 16px;
    }

        .sidebar .nav-link:hover {
            background: #495057;
        }

        .sidebar .nav-link i {
            margin-right: 10px;
        }

.content {
    margin-left: 260px; /* Adjust content to leave space for sidebar */
}
/* تحسين الاستجابة للجوال */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }
}
.select2-container--default .select2-selection--single {
    height: 38px;
    padding: 6px;
    font-size: 16px;
}
/* تلوين الحقول غير الصحيحة باللون الأحمر */
/*input.input-validation-error, select.input-validation-error, textarea.input-validation-error {
    border: 2px solid red !important;
    background-color: #ffe6e6 !important;
}*/

/* تلوين الحقول الصحيحة */
/*input.valid, select.valid, textarea.valid {
    border: 2px solid green !important;
    background-color: #e6ffe6 !important;
}*/
/* تلوين الحقول غير الصحيحة باللون الأحمر */
input.input-validation-error, select.input-validation-error, textarea.input-validation-error {
    border: 2px solid red !important;
    background-color: #ffe6e6 !important;
}

/* تلوين الحقول الصحيحة */
input.valid, select.valid, textarea.valid {
    border: 2px solid green !important;
    background-color: #e6ffe6 !important;
}
