* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
}

@font-face {
  font-family: "ArabicFont";
  src: url("fonts/Tajawal/Tajawal-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "EnglishFont";
  src: url("fonts/PlayfairDisplay/PlayfairDisplay-Regular.ttf") format("truetype");
}
body {
  font-family: "EnglishFont", sans-serif;
  background: #ebe9e9; /* fallback for old browsers */
}

body:lang(ar) {
  font-family: "ArabicFont", sans-serif;
}

.login-container-img {
  max-width: 400px;
  margin: 0 auto;
  margin-top: 100px;
}

.login-container {
  max-width: 400px;
  margin: 0 auto;
  margin-top: 10px;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}

.login-container2 {
  max-width: 400px;
  margin: 0 auto;
  margin-top: 5px;
  padding: 10px;
}

.form-control:focus {
  box-shadow: none;
}

.logo {
  height: 80px;
  padding-top: 5;
}

.menu {
  height: 88%;
  position: relative;
  list-style: none;
  padding: 0;
}

.menu li {
  padding: 1rem;
  margin: 8px 0;
  border-radius: 8px;
  transition: all 0.5s ease-in-out;
}

.active i {
  color: #f2f2f2;
}

.menu li > a:hover {
  color: #f2f2f2;
}

.menu a {
  color: #c8c7c7;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu a span {
  overflow: hidden;
}

.menu a i {
  font-size: 1.2rem;
}

.logout {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.logout:lang(ar) {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}

/* main body section */
.main-content {
  position: relative;
  background: #ebe9e9;
  width: 100%;
  padding: 1rem;
}

.header--wrapper img {
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
}

.header--wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  padding: 10px 2rem;
  margin-bottom: 1rem;
}

.header--title {
  color: #000000;
}

.user--info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search--box {
  background: rgb(237, 237, 237);
  border-radius: 15px;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
}

.search--box input {
  background: transparent;
  padding: 10px;
}

.search--box i {
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.5s ease-out;
}

.search--box i:hover {
  transform: scale(1.2);
}

/* card container */
.card--container {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
}

.main--title {
  color: #000000;
  padding-bottom: 10px;
  font-size: 15px;
}

.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.payment--card {
  background: rgb(229, 223, 223);
  border-radius: 10px;
  padding: 1.2rem;
  width: 290px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s ease-in-out;
}

.payment--card:hover {
  transform: translatey(-5px);
}

.card--header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.ammount {
  display: flex;
  flex-direction: column;
}

.title {
  font-size: 12px;
  font-weight: 200;
}

.amount-value {
  font-size: 24px;
  font-weight: 600;
}

.icon {
  color: #fff;
  padding: 1rem;
  height: 60px;
  width: 60px;
  text-align: center;
  border-radius: 50%;
  font-size: 1.5rem;
  background: #d80027;
}

.card-detail {
  font-size: 18px;
  color: #777777;
  letter-spacing: 2px;
}

/* color css */
.icon-color-caard-dark {
  background: #000000;
}

.icon-color-caard-green {
  background: #6da544;
}

.icon-color-caard-white {
  background: #ffffff;
}

.icon-color-caar-red {
  background: #d80027;
}

/** tabular--wrapper **/
.tabular--wrapper {
  background: #fff;
  margin-top: 1rem;
  border-radius: 10px;
  padding: 2rem;
}

.table-container {
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: #c8c7c7;
  color: #fff;
}

th {
  padding: 15px;
  text-align: left;
}

th:lang(ar) {
  padding: 15px;
  text-align: right;
}

tbody {
  background: #f2f2f2;
}

td {
  padding: 15px;
  font-size: 14px;
  color: #333;
}

tr:nth-child(even) {
  background: #fff;
}

tfoot {
  background: #c8c7c7;
  font-weight: bold;
  color: #fff;
}

tfoot td {
  padding: 15px;
  color: #fff;
}

.table-container button {
  color: green;
  background: none;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */