/* ========================================
   CODE.CSS - Minimal Essential Styles
   (Non-chat specific styles only)
   ======================================== */

:root {
  --blueColor: #0088cc;
}

body {
  font-family: "Vazirmatn", sans-serif;
  background-color: #dfe4e8;
  margin: 0px;
}

/* Remove focus outlines */
textarea,
select,
input,
button {
  outline: none;
}

/* Placeholder styles */
[contentEditable="true"]:empty:not(:focus)::before {
  content: attr(data-ph);
  color: rgb(180, 180, 180);
}

/* Generic button styles */
.myButton_red {
  box-shadow: inset 0px 1px 0px 0px #f5978e;
  background-color: #f24537;
  border: 1px solid #d02718;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: Vazirmatn;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 12px;
  text-decoration: none;
}
.myButton_red:hover {
  background-color: #c62d1f;
}
.myButton_red:active {
  position: relative;
  top: 1px;
}

.myButton_green {
  box-shadow: inset 0px 1px 0px 0px #3e7327;
  background-color: #77b55a;
  border: 1px solid #4b8f29;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: Vazirmatn;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 12px;
  text-decoration: none;
}
.myButton_green:hover {
  background-color: #72b352;
}
.myButton_green:active {
  position: relative;
  top: 1px;
}

/* Call page styles */
.callPageBox {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
}

/* Badge styles */
.badge {
  display: inline-block;
  min-width: 3px;
  padding: 3px 7px;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #40a7e3;
  border-radius: 10px;
  position: absolute;
  left: 11px;
  overflow: hidden;
  font-size: 10px;
  bottom: 20px;
}

/* Animation keyframes */
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
