/* Start Global variables */
:root {
  --background-nav-color: #ffffff;
  --background-color: #e6e8ec;
  --main-color: #000000;
  --btn-nav-color: #e50914;
  --btn-section-color: #08488c;
  --link-color: #012e65;
  --table-head-color: #bb0000;
  --background-table-head: #dadada;
  --background-table-body: #f3f3f3;
  --icon-color: #6a6a65;
  --green-btn-color: #279101;
  --red-btn-color: #960505;
  --black-btn-color: #272727;
  --gray-text: #7b7b7b;
  --blue-color: #0075ff;
  --blue-alt-color: #0d69d5;
  --footer-background-color:#08488C;
}
@font-face {
  font-family:"bein" ;
  src: url("../font/beinNormal.ttf");
  
}
/* End Global variables */
/* Start Global Rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
::selection {
  color: white;
  background-color: var(--main-color);
}

::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
  background-color: var(--background-nav-color);
  border-radius: 10px;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
/* بدايه تحويل الفونت */
/* الهيدر */
.h{ 
  font-family:"bein" ;
  font-weight: 1000;
}
.l{ 
  font-family:"bein" ;
   font-weight: 1000;
}
.g{ 
  font-family:"bein" ;
  font-weight: 550;
}
/* هيدر */
/* البيدج */
.s{ 
  font-family:"bein" ;
}
.f{ 
  font-family:"bein" ;
  font-weight: bold;
}
.ss{ 
  font-family:"bein" ;
  font-weight: bold;
}
.d{ 
  font-family:"bein" ;
  font-weight: bold;
}
.p{ 
  font-family:"bein" ;
}
.pp{ 
  font-family:"bein" ;
  font-weight: bold;
}
/* الفوتر */
.ga{ 
  font-family:"bein" ;
  font-size: large;
}
.li{ 
  font-family:"bein" ;
  font-size: large;
}
/* نهايه */
.heading-style {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--background-nav-color);
  text-align: center;
  text-decoration: underline;
  letter-spacing: 1.2;
  margin-bottom: 3rem;
  padding-top: 1rem;
}
input[type="text"],
input[type="password"],
input[type="date"] {
  border-width: 1px;
  border-color: gray;
  background-color: transparent;
}
/* End Global Rules */
/* Start Navbar */
.awad{
  margin-right: 125px;
}
.nav-link {
  color: var(--link-color) !important;
}
.nav-link.login {
  color: #111827;
}
.btn-nav {
  color: var(--background-nav-color);
  background-color: var(--btn-nav-color);
  padding: 8px 15px;
  border-radius: 50px;
  border: none;
}
.bg-nav-color {
  background-color: var(--background-nav-color);
}
/* End Navbar */
/* Start First section */
.fixed-nav {
  padding-top: 7.5rem;
}
#first-section {
    background: linear-gradient(#01193784, #01193784), url(../Images/overlay-image.png);
    background-size: 100% 100%;
    background-position: center center;
    background-attachment: fixed;
}
.bg-color {
  background-color: var(--background-color);
}
.save-form {
  background-color: var(--btn-section-color);
  color: var(--background-nav-color);
  border: none;
  border-radius: 8px;
  padding: 5px 17px;
  display: inline-block;
}
.icon-color {
  color: var(--icon-color);
}
.span-icon-size {
  font-size: 14px;
}

@media (max-width: 992px) {
  #first-section .group {
    width: 100% !important;
  }
}

@media (max-width: 1200px) {
  #first-section .Box {
    width: 90% !important;
    margin: auto !important;
  }
}

.icon-color {
  color: var(--icon-color);
}
.responsive_table {
  overflow-x: auto;
  max-height: 40vh;
  overflow-y: auto;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #1976d2; /* Blue color */
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.toggle-switch {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.toggle-switch input[type="checkbox"] {
  appearance: none;
  width: 40px;
  height: 20px;
  border-radius: 10px;
  background-color: #ccc;
  position: relative;
  transition: background-color 0.3s ease-in-out;
}

.toggle-switch input[type="checkbox"]:checked {
  background-color: #007bff;
}

.toggle-switch input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: white;
  transition: transform 0.3s ease-in-out;
}

.toggle-switch input[type="checkbox"]:checked::after {
  transform: translateX(20px);
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.create-account-button {
  background-color: #004682; /* Replace with the exact blue color from the image */
  color: white;
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  
}

/* End first-section */
footer{
  background-color:var(--footer-background-color) ;
  padding:29px 80px 29px 80px;
}

@media only screen and (max-width: 600px) {
  .w-50 {
    width: 100% !important;
    left: 0 !important;
  }
}
