html,
body {
  height: 100%;
  direction: rtl;
  text-align: right;
  font-family: bein;
}

@font-face {
  font-family: bein;
  src: url('bein.ttf');
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

#notification {
  display: none;
  background: #dff0d8;
  color: #3c763d;
  padding: 10px;
  margin-top: 10px;
  position: fixed;
  z-index: 3;
  left: 2%;
  top: 20%;
  box-shadow: 1px 2px 20px 3px #06060633;
  border-radius: 5px;
  border: 1px solid #87cd87;
}

.alertme {
  display: inline-block;
  border-radius: 4px;
  color: #ffffff;
  background-color: #ff4f4f;
  padding: 0 11px;
  float: left;
}

@keyframes flash {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.alertme {
  animation: flash 1.5s ease-in-out infinite;
}

.sideinfo {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 9px;
  background: #f4f4f4;
  font-size: 0.9em;
}

.sideinfo div {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3)
}

.gbtn {
  text-decoration: none !important;
  padding: 5px;
  background: #eaeaea;
  border-radius: 5px;
  display: flex;
  align-items: center;
  color: #009d7f;
  transition: 0.2s;
}

.gbtn:hover {
  background: #009d7f;
  color: #fff;
  cursor: pointer;
}

.fs {
  position: relative;
}

.fs #search {
  padding-right: 50px;
}

#clearButton {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
  font-size: 15px;
  text-align: center;
  width: 22px;
  transition: 0.2s;
}

#clearButton:hover {
  background: #dadada;
  border-radius: 21px;
  width: 22px;
  text-align: center;
  color: #000;
  box-shadow: 0px 0px 9px #0000008f;
}

#clearButton:active {
  background: #1190ac;
}

@keyframes colorChange {
  0% {
    background-color: #c0e7e9;
  }

  100% {
    background-color: #fff;
  }
}

.alertme2 {
  animation: colorChange 1s infinite;
}

#AhmedABCaptcha_CaptchaDiv {
  display: flex;
}

.captcha {
  border-radius: 5px;
  padding: 5px;
  line-height: 5px;
}

a[href="https://captcha.org/captcha.html?php"] {
  display: none !important;
}

.btn-google {
  background: #eee;
}

.btn-google:hover {
  background: #ddd;
}

@media print {

  input,
  select {
    display: none !important;
  }

  .form-group label,
  .list-group,
  button {
    display: none;
    visibility: hidden;
    width: 0 !important;
  }

  table tr th:last-child,
  h4 {
    display: none;
  }

  .hide {
    display: block !important;
  }
}

.hide {
  display: none;
}

/* chat */
#chat-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 300px;
  border: 1px solid #ccc;
  background-color: #fff;
  display: none;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  overflow: hidden;
  background-color: #f1f1f1;
}

#chat-header {
  background-color: #1190AC;
  color: white;
  padding: 8px;
  cursor: pointer;
}

#chat-box {
  height: 300px;
  overflow-y: scroll;
  padding: 4px 10px;
}

#message-form {
  padding: 5px;
  display: flex;
}

#message-form input {
  flex: 1;
  margin-right: 5px;
  border-radius: 9px;
  border: none;
  width: 100%;
  padding: 5px 10px;
  box-shadow: 0px 0px 5px 0px #00000047;
}

#open-chat-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 0;
  background-color: #00d1ff;
  color: white;
  border: 2px solid #fff;
  cursor: pointer;
  border-radius: 40px;
  width: 50px;
  box-shadow: 1px 2px 15px #00000061;
  height: 50px;
  font-size: 20px;
}

.bchat {
  border-radius: 50%;
  border: none;
  margin: 5px;
  width: 35px;
}

.message {
  background-color: #fff;
  padding: 5px;
  margin-bottom: 5px;
  border-radius: 5px;
  box-shadow: 0px 1px 3px #00000024;
}

.message-email {
  background: #f2f8ff;
  padding: 0px 5px;
  border-radius: 13px;
  margin: 2px 1px;
  font-size: 12px;
  box-shadow: inset 0px 0px 5px 0px #008cab;
}

.message-text {
  font-size: 15px;
}

.message-time {
  background: #ffffbb;
  padding: 0px 5px;
  border-radius: 13px;
  margin: 2px 1px;
  font-size: 12px;
  box-shadow: inset 0px 0px 4px 0px #b04949;
}

.msgbox {
  text-align: left;
}

.activechat {
  padding: 10px;
}

/* end chat */
.popup {

  animation: popupAnimation 1s ease-in-out 3;
}

@keyframes popupAnimation {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.stage-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.stage-labels span {
  flex: 1;
  text-align: center;
  margin: 2px 20px;
}

.stage-radios {
  display: flex;
  justify-content: space-between;
}

.stage-radios label {
  flex: 1;
  text-align: center;
}

.d-flex.m-auto.stagerow {
  background: #ededed;

  border-radius: 10px;
  box-shadow: inset 0px 0px 3px 0px #00000045;
  text-align: center;
}

.stage-radios {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.stage-radios label {
  display: flex;
  flex-direction: column;
  background: #dedede;
  padding: 5px 2px;
  border-radius: 10px;
  margin: 0px 5px;
}

.stage-container {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.stage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stage-item span {
  font-size: 16px;
  margin-bottom: 5px;
}

.stage-item label {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stage-item input[type="radio"] {
  margin: 0;
}

.stage-container div {
  background: #dedede;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
  color: #fff;
  text-shadow: 1px 2px 4px #000000d4;
}
:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-bg: #f8f9fa;
  --dark-text: #2c3e50;
  --success-color: #27ae60;
}
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 4px;
}
.navbar {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  background: var(--primary-color) !important;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff !important;
}

.navbar-brand img {
  margin-left: 8px;
}

.list-group-item {
  
  border-radius: 8px !important;
  margin-bottom: 5px;
  transition: all 0.3s ease;
  color: var(--dark-text);
}

.list-group-item:hover {
  background: var(--secondary-color) !important;
  color: white !important;
  transform: translateX(5px);
}

.list-group-item.active {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color);
  font-weight: 600;
}

.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-1px);
}

.card-header {
  background: var(--primary-color);
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 12px 12px 0 0 !important;
}
