@font-face {
  font-family: Estedad;
  src: url('../fonts/Estedad-Bold.woff2');
}
@font-face {
  font-family: Estedad;
  font-weight: bold;
  src: url('../fonts/Estedad-Black.woff2');
}
@font-face{
	font-family: Material Icons Outlined;
	src: url('../fonts/google-icons.woff2');
}
body{
	font-family: 'Estedad';
}
textarea.form-control{
  box-shadow: none;
}
.dir-ltr{
	direction: ltr;
}
.dir-rtl{
  direction: rtl;
}
.material-icons-outlined{
	font-family: "Material Icons Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga";
}
.bg-background-light{
	background-color: #fafafa;
}
.sidebare{
  height: 100%;
  width: 55px;
  justify-content: end;
  margin-left: 5px;
  background-color: #ff4b4b;
  position: fixed;
  right: 0;
}
.coversation{
  max-width: 655px;
}
.controler{
  width: 655px;
}
.message-ai{
  background: -webkit-linear-gradient(45deg, rgb(251, 191, 36), #eee);
    background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 4px;
}
.w-fit{
  width: fit-content;
}
.arrow-down{
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgb(107 114 128 / var(--tw-text-opacity, 1)); /* رنگ فلش */
}
.btn-outline-primary {
  --bs-btn-color: #FFD700;
  /* طلایی روشن */
  --bs-btn-border-color: #FFD700;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #FFD700;
  --bs-btn-hover-border-color: #FFD700;
  --bs-btn-focus-shadow-rgb: 255, 215, 0;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #FFD700;
  --bs-btn-active-border-color: #FFD700;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #FFD700;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #FFD700;
  --bs-gradient: none;
}
.btn-sidebare{
  width: 2.9rem;
}
.main-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.dark{
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 1250; 
}
.model-dialog {
  position: absolute;
  top: 25px;
  left: 442px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(180%);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 40;
}

.model-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
}

.model-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
}

.model-option:hover {
  background: rgba(0, 0, 0, 0.05);
}

.model-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.model-icon {
  width: 20px;
  height: 20px;
  mask-size: contain;
}

.model-text {
  text-align: left;
}

.model-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
}

.model-badge {
  /*background: rgba(0, 0, 0, 0.08);*/
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 10px;
  /*color: #555;*/
}

.model-badge.new {
  background: rgba(255, 165, 0, 0.3);
  color: #ff9800;
}

.model-desc {
  /*color: #666;*/
  font-size: 11px;
}

.model-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #888;
}

.model-radio.selected {
  background-color: #444;
}

.sidebare{
  z-index: 5555;
}
#fromSettings{
  z-index: 5556;
}
.hidden{
  display: none;
}
message-user{
  display: flex;
  gap: 5px;
}
.think-text{
  border: 2px solid rgb(253 224 71 / var(--tw-text-opacity, 1));
  border-right: none;
  border-bottom: none;
  border-top: none;
}
.close{
  display: none;
}
.open{
  display: block;
}
.coversation{
  overflow-y: scroll;
  overflow-x: hidden;
}
.body-animation {
    margin-left: 5px;
    display: flex;
    gap: 15px;
}
.circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: pulse 2s infinite ease-in-out;
}
.circle1 {
  background-color: #ff6b6b;
}
.circle2 {
    background-color: #93c7ec;
    animation-delay: 0.66s;
}
.circle3 {
    background-color: #ffe66d;
    animation-delay: 1.33s;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}