@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');


:root {
  --header-background: rgba(255, 255, 255, 0.95);
  --primary: #000000;
  --secondary: #3b82f6;
  --accent: #10b981;
  --dark: #1e293b;
  --light: #F8FAFC;
  --gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --chatbot-color: rgb(0, 81, 255);
  --cta-btn-bg: white;
  --html-bg: #FFFFFF;
  --grade-card-bg: #F8FAFC;
  --card-bg: #FFFFFF;
  --essay-header-bg: #2c3e50;
}

.dark-theme {
  --header-background: #363636;
  --primary: #ffffff;
  --secondary: #3b82f6;
  --accent: #10b981;
  --dark: #e6e6e6;
  --light: #070503;
  --gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  --shadow: 0 4px 6px -1px rgba(255, 255, 255, 0.1);
  --chatbot-color: rgb(0, 81, 255);
  --cta-btn-bg: #363636;
  --html-bg: #2D2D2D;
  --grade-card-bg: #363636;
  --card-bg: #2D2D2D;
  --essay-header-bg: rgb(23, 116, 0);
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Comfortaa", sans-serif; */
  font-family: "Nunito", sans-serif;
  scroll-behavior: smooth;
  text-decoration: none;
}

body {
  background: var(--html-bg);
  color: var(--dark);
  line-height: 1.6;
}

/* Modern Header */
.header {
  background: var(--header-background);
  backdrop-filter: blur(25px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.navbar {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dark-theme .logo {
  background-color: whitesmoke;
  border-radius: 10px;
  scale: 0.75;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--dark);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.nav-link:hover {
  background: var(--accent);
  color: var(--primary);
}

.right-content-header {
  display: flex;
  align-items: center;
  gap: 12.5px;
  justify-content: center;
  /* background-color: red; */
}

#theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  margin-top: 5px;
  margin-right: -7.5px;
  display: none;
}

#temp-theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  margin-top: 7.5px;
  margin-left: -10px !important;
}



#home-page-back {
  background-color: #27ae60;
  font-weight: bold;
  /* text-decoration: underline; */
  border-radius: 10px;
  color: rgb(255, 255, 255);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* #home-page-back:hover {
  background-color: #219150;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
} */

/* Мобилни стилове */
@media screen and (max-width: 1000px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
  }

  .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    transition: all 0.3s ease;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /* background: rgba(255, 255, 255, 0.98); */
    background: var(--header-background);
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    display: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-radius: 6px;
    margin: 2px 0;
  }

  #home-page-back {
    margin-top: 1rem;
  }

  .logo img {
    height: 60px;
    /* Намаляваме логото за мобилни */
  }

  #temp-theme-toggle{
    display: none;
  }
  
  #theme-toggle {
    display: block;
  }
}

/* Допълнителни корекции за по-малки екрани */
@media screen and (max-width: 480px) {
  .navbar {
    padding: 0 1rem;
    height: 80px;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .logo img {
    height: 65px;
  }
}





/*! Hero Section */
.hero {
  padding: 8rem 2rem;
  background: var(--gradient);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  animation: float 20s linear infinite;
}

@keyframes float {
  0% {
    transform: translateX(0) rotate(45deg);
  }

  100% {
    transform: translateX(-50%) rotate(45deg);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-btn-div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}

.cta-button {
  background: var(--cta-btn-bg);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  text-decoration: none;
}

/* Curriculum Section */
.curriculum-section {
  max-width: 1440px;
  margin: 4rem auto;
  padding: 0 2rem;
}

/* Responsive Design */
@media (max-width: 400px) {
  .curriculum-section {
    padding: 0 10px;
  }

  .grade-card {
    padding: 12.5px !important;
  }

  .work-btn {
    width: 250px !important;

  }
}




/*!          Grade Card Styles        */
/*!          Grade Card Styles        */
/*!          Grade Card Styles        */


.grade-card {
  width: 100%;
  background: var(--grade-card-bg);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.grade-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}

.grade-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.grade-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.author-list {
  display: flex;
  justify-content: space-left;
  align-items: center;
  flex-wrap: wrap;
}

.author-item {
  list-style: none;
  /* Премахва точките */
  margin: 10px;
}

.work-btn {
  width: 300px;
  height: 80px;
  /* background: #FFFFFF; */
  background: var(--card-bg);
  border-radius: 4px;
  border: none;
  border-left: 3px solid var(--secondary);
  /* Лява син граница */
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.work-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 28px;
  color: #2563eb;
  flex-shrink: 0;
}

.text-wrapper {
  display: flex;
  flex-direction: column;
}

.work-title {
  color: var(--primary);
  font-size: 18px;
  /* font-family: "Comfortaa", sans-serif; */
  font-weight: 700;
  line-height: 1.2;
  display: block;
}

.work-author {
  color: var(--dark);
  font-size: 14px;
  /* font-family: "Comfortaa", sans-serif; */
  font-weight: 400;
  opacity: 0.9;
}

/* Модални стилове */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  background: white;
  padding: 2rem;
  width: 90%;
  max-width: 600px;
  margin: 2rem auto;
  border-radius: 16px;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

.modal h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.modal p {
  margin-bottom: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 2.5rem;
  }

  .author-list {
    grid-template-columns: 1fr;
  }
}






/*!            ЕСЕ-РАЗКАЗ            */
/*!            ЕСЕ-РАЗКАЗ            */
/*!            ЕСЕ-РАЗКАЗ            */

.teorii-ese-interpr-razkaz {
  width: 100%;
  background-color: #4383F5;
  height: auto;
  padding: 40px 20px;
}

/* CORE CONTAINER */
#interpretiveEssay {
  background: var(--html-bg);
  border-radius: 12px;
  margin: 2rem auto;
  padding: 1.5rem;
  max-width: 1200px;
  box-shadow: 0 4px 20px rgba(18, 52, 150, 0.08);
}

/* HEADER STYLES */
.essay-header {
  background: var(--essay-header-bg);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}


/* CONTENT SECTION */
.essay-content {
  padding: 1.5rem;
  color: var(--dark);
  line-height: 1.7;
}

/* SECTION TITLES */
.section-title {
  color: var(--accent);
  font-size: 1.1rem;
  margin: 1.5rem 0 1rem;
  padding-left: 0.8rem;
  border-left: 3px solid #27ae60;
  font-weight: bold;
}

/* LIST STYLES */
.structured-list {
  margin: 1rem 0;
  padding-left: 1.8rem;
}

.list-item {
  margin-bottom: 0.8rem;
  position: relative;
  font-weight: bold;
  font-size: 20px;
}

.list-item ul li {
  font-weight: 300;
  margin-left: 32px;
}



.ordered-section {
  counter-reset: subsection;
  margin-left: 1.5rem;
}

.ordered-section li {
  margin-bottom: 1rem;
}

#highlight-bel {
  color: rgb(255, 0, 0);
}

#uncorrect-bel {
  text-decoration: line-through;
}

#remember {
  color: blueviolet;
  text-transform: uppercase;
  font-weight: 700;
}

.dark-theme #remember {
  color: darksalmon;
}

.dark-theme #highlight-bel {
  color: orange;
}





#scroll-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: goldenrod;
  color: rgb(46, 46, 46);
  width: 40px;
  height: 40px;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 10px;
  font-size: 32px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}











/*!              FOOTER                 */
/*!              FOOTER                 */
/*!              FOOTER                 */

.footer-distributed {
  background: rgb(46, 46, 46);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  border-top: outset 1px rgba(255, 255, 255, 0.225);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 55px 50px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
  display: inline-block;
  vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
  width: 40%;
}

/* The company logo */

.footer-distributed h3 {
  color: #ffffff;
  font-family: "Edu AU VIC WA NT Hand", cursive;
  font-size: 36px;
  margin: 0;
}

.footer-distributed h3 span {
  color: lightseagreen;
  font-family: "Edu AU VIC WA NT Hand", cursive;
}

/* Footer links */

.footer-distributed .footer-links {
  color: whitesmoke;
  margin: 20px 0 12px;
  padding: 0;
}

.footer-distributed .footer-links a {
  display: inline-block;
  font-weight: 400;
  text-decoration: none;
  color: inherit;
}

.footer-distributed .footer-company-name {
  color: #8d8d8d;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center {
  width: 32.5%;
}

.footer-distributed .footer-center i {
  background-color: #33383b;
  color: #ffffff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
  font-size: 17px;
  line-height: 38px;
}

.footer-distributed .footer-center p {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
  vertical-align: middle;
  margin: 0;
}

.footer-distributed .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}

.footer-distributed .footer-center p a {
  color: lightseagreen;
  text-decoration: none;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight: 300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right {
  width: 22.5%;
}

.footer-distributed .footer-company-about {
  line-height: 20px;
  color: #92999f;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}



@media (max-width: 1100px) {

  .footer-distributed {
    font: bold 14px sans-serif;
  }


  .footer-distributed .footer-right {
    display: block;
    width: 100%;
    margin-bottom: 12.5px;
    text-align: left;
    flex-direction: column;
    margin-top: 20px;
  }

  .footer-distributed .footer-left {
    width: 100%;
  }

  .footer-distributed .footer-center {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .footer-distributed .footer-center i {
    margin-left: 0;
  }

}





/* Importing Google Fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');



#chatbot-toggler {
  z-index: 10;
  position: fixed;
  bottom: 30px;
  right: 35px;
  border: none;
  height: 50px;
  width: 50px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--chatbot-color);
  /* Тъмно зелено */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

body.show-chatbot #chatbot-toggler {
  transform: rotate(90deg);
}

#chatbot-toggler span {
  color: #fff;
  position: absolute;
}

#chatbot-toggler span:last-child,
body.show-chatbot #chatbot-toggler span:first-child {
  opacity: 0;
}

body.show-chatbot #chatbot-toggler span:last-child {
  opacity: 1;
}

.chatbot-popup {
  position: fixed;
  right: 35px;
  bottom: 90px;
  width: 420px;
  overflow: hidden;
  background: #fff;
  border-radius: 15px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.2);
  transform-origin: bottom right;
  box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1),
    0 32px 64px -48px rgba(0, 0, 0, 0.5);
  transition: all 0.1s ease;
  z-index: 10;
  text-align: left !important;
}

body.show-chatbot .chatbot-popup {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.chat-header {
  display: flex;
  align-items: center;
  padding: 15px 22px;
  background: var(--chatbot-color);
  /* Тъмно зелено */
  justify-content: space-between;
}

.chat-header .header-info {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-info .chatbot-logo {
  width: 35px;
  height: 35px;
  padding: 6px;
  fill: var(--chatbot-color);
  /* Тъмно зелено */
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
}

.header-info .logo-text {
  color: #fff;
  font-weight: 600;
  font-size: 1.31rem;
  letter-spacing: 0.02rem;
}

.chat-header #close-chatbot {
  border: none;
  color: #fff;
  height: 40px;
  width: 40px;
  font-size: 1.9rem;
  margin-right: -10px;
  padding-top: 2px;
  cursor: pointer;
  border-radius: 50%;
  background: none;
  transition: 0.2s ease;
}

.chat-header #close-chatbot:hover {
  background: var(--chatbot-color);
  /* Тъмно зелено */
}

.chat-body {
  padding: 25px 22px;
  gap: 20px;
  display: flex;
  height: 460px;
  overflow-y: auto;
  margin-bottom: 82px;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: var(--chatbot-color) transparent;
  /* Тъмно зелено */
}

.chat-body,
.chat-form .message-input:hover {
  scrollbar-color: var(--chatbot-color) transparent;
  /* Тъмно зелено */
}

.chat-body .message {
  display: flex;
  gap: 11px;
  align-items: center;
}

.chat-body .message:last-child {
  margin-bottom: 25px;
}

.chat-body .message .bot-avatar {
  width: 35px;
  height: 35px;
  padding: 6px;
  fill: #fff;
  flex-shrink: 0;
  margin-bottom: 2px;
  align-self: flex-end;
  border-radius: 50%;
  background: var(--chatbot-color);
  /* Тъмно зелено */
}

.chat-body .message .message-text {
  padding: 12px 16px;
  max-width: 75%;
  font-size: 0.95rem;
}

.chat-body .bot-message.thinking .message-text {
  padding: 2px 16px;
}

.chat-body .bot-message .message-text {
  background: #F2F2FF;
  border-radius: 13px 13px 13px 3px;
}

.chat-body .user-message {
  flex-direction: column;
  align-items: flex-end;
}

.chat-body .user-message .message-text {
  color: #fff;
  background: var(--chatbot-color);
  /* Тъмно зелено */
  border-radius: 13px 13px 3px 13px;
}

.chat-body .user-message .attachment {
  width: 50%;
  margin-top: -7px;
  border-radius: 13px 3px 13px 13px;
}

.chat-body .bot-message .thinking-indicator {
  display: flex;
  gap: 4px;
  padding-block: 15px;
}

.chat-body .bot-message .thinking-indicator .dot {
  height: 7px;
  width: 7px;
  opacity: 0.7;
  border-radius: 50%;
  background: var(--chatbot-color);
  /* Тъмно зелено */
  animation: dotPulse 1.8s ease-in-out infinite;
}

.chat-body .bot-message .thinking-indicator .dot:nth-child(1) {
  animation-delay: 0.2s;
}

.chat-body .bot-message .thinking-indicator .dot:nth-child(2) {
  animation-delay: 0.3s;
}

.chat-body .bot-message .thinking-indicator .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {

  0%,
  44% {
    transform: translateY(0);
  }

  28% {
    opacity: 0.4;
    transform: translateY(-4px);
  }

  44% {
    opacity: 0.2;
  }
}

.chat-footer {
  position: absolute;
  bottom: 0;
  width: calc(100% - 44px);
  background: #fff;
  padding: 15px 22px 20px;
}

.chat-footer .chat-form {
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
  border-radius: 32px;
  outline: 1px solid #CCCCE5;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.06);
  transition: 0s ease, border-radius 0s;
}

.chat-form:focus-within {
  outline: 2px solid var(--chatbot-color);
  /* Тъмно зелено */
}

.chat-form .message-input {
  width: 100% !important;
  height: 47px !important;
  outline: none;
  resize: none;
  border: none;
  max-height: 47px;
  scrollbar-width: thin;
  border-radius: inherit;
  font-size: 0.95rem;
  padding: 14px 0 12px 18px;
  scrollbar-color: transparent transparent;
}

.message-input:focus {
  height: 47px;
  /* Поддържане на фиксирана височина */
}

.chat-form .chat-controls {
  gap: 3px;
  height: 47px;
  display: flex;
  padding-right: 6px;
  align-items: center;
  align-self: flex-end;
}

.chat-form .chat-controls button {
  height: 35px;
  width: 35px;
  border: none;
  cursor: pointer;
  color: var(--chatbot-color);
  /* Тъмно зелено */
  border-radius: 50%;
  font-size: 1.15rem;
  background: none;
  transition: 0.2s ease;
}

.chat-form .chat-controls button:hover,
body.show-emoji-picker .chat-controls #emoji-picker {
  color: var(--chatbot-color);
  /* Тъмно зелено */
  background: #f1f1ff;
}

.chat-form .chat-controls #send-message {
  color: #fff;
  display: none;
  background: var(--chatbot-color);
  /* Тъмно зелено */
}

.chat-form .chat-controls #send-message:hover {
  background: var(--chatbot-color);
  /* Тъмно зелено */
}

.chat-form .message-input:valid~.chat-controls #send-message {
  display: block;
}

.chat-form .file-upload-wrapper {
  position: relative;
  height: 35px;
  width: 35px;
}

.chat-form .file-upload-wrapper :where(button, img) {
  position: absolute;
}

.chat-form .file-upload-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.chat-form .file-upload-wrapper #file-cancel {
  color: #ff0000;
  background: #fff;
}

.chat-form .file-upload-wrapper :where(img, #file-cancel),
.chat-form .file-upload-wrapper.file-uploaded #file-upload {
  display: none;
}

.chat-form .file-upload-wrapper.file-uploaded img,
.chat-form .file-upload-wrapper.file-uploaded:hover #file-cancel {
  display: block;
}

em-emoji-picker {
  position: absolute;
  left: 50%;
  top: -337px;
  width: 100%;
  max-width: 350px;
  visibility: hidden;
  max-height: 330px;
  transform: translateX(-50%);
}

body.show-emoji-picker em-emoji-picker {
  visibility: visible;
}

/* Responsive media query for mobile screens */
@media (max-width: 520px) {
  #chatbot-toggler {
    right: 20px;
    bottom: 20px;
  }

  .chatbot-popup {
    right: 0;
    bottom: 0;
    height: 100%;
    border-radius: 0;
    width: 100%;
  }

  .chatbot-popup .chat-header {
    padding: 12px 15px;
  }

  .chat-body {
    height: calc(90% - 55px);
    padding: 25px 15px;
  }

  .chat-footer {
    padding: 10px 15px 15px;
  }

  .chat-form .file-upload-wrapper.file-uploaded #file-cancel {
    opacity: 0;
  }
}

#check-info {
  color: rgb(32, 32, 32);
  font-size: 9px !important;
  text-align: center;
  margin-bottom: -12.5px;
  margin-top: 3.5px !important;
}

#clear-chat {
  font-size: 12.5px;
  color: #33383b;
}