@font-face {
    font-family: uthmanic;
    src: url("uthmanic_warsh_v21.ttf");
}

/* 🟡 إعدادات عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    direction: rtl;
    font-family: uthmanic;
    text-decoration: none;
    list-style: none;
}

:root {
    --white: #f0f0f0;
    --black: #000;
    
    --white-normal: #fff;

    --gold-main: rgb(217 190 64);
    --gold-dark: rgb(168 145 34);
    --gold-light: rgb(239 228 176);

    --gold-soft: rgb(217 190 64 / 0.2);
    --gold-shadow: rgb(168 145 34 / 0.2);
    --gold-transparent: rgba(0, 0, 0, 0.1);

    --overlay-dark: rgb(0 0 0 / 0.1);

    --white-soft: rgba(255 255 255 / 0.1);

    --gray-shadow: #aaa;

    --brown-main: #a7634b;
    --brown-dark: #7d7065;

    --blue-qid: #00f; 
}

body {
    height: 100vh;
    overflow: hidden;
}

/*  الإطار العام */
.lewa7-body {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100vh;
    perspective: 1200px;
    background-color: var(--gold-dark);
}

.lewa7-body::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-size: 60%;
    background-position: center;
    top: 0;
    left: 0;
    background-color: rgba(0 0 0 / 0.4);
}

.lewa7 {
    position: fixed;
    width: 90%;
    height: 80%;
    max-width: 295px;
    max-height: 482px;
    color: var(--white);
    background-size: cover;
    border-radius: 200px 200px 30px 30px;
    transform-origin: center;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    z-index: 4;
    box-shadow: 0 0 12px rgba(0 0 0 / 0.1);
}

.lewa7.shake {
	animation: 0.5s shake linear infinite;
}

@keyframes shake {
  0%,100% { transform: rotateY(0) translateX(0); }
  25% { transform: rotate(5deg) translateX(-5px); }
  75% { transform: rotate(-5deg) translateX(5px); }
}

.lewa7-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--gold-main);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    box-shadow: 0 0 10px rgba(0 0 0 / 0.1) inset;
}

.lewa7-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100px 100px 20px 20px;
    box-shadow:
        6px -6px 20px rgba(0, 0, 0, 0.1) inset,
        -3px 4px 20px var(--white-soft) inset;
    pointer-events: none;
    z-index: 5;
}

.lewa7-container::after {
    content: "";
    position: absolute;
    bottom: -8%;
    width: 100%;
    height: 5%;
    border-radius: 50%;
    background-color: var(--overlay-dark);
    filter: blur(6px);
}

.lewa7-container::before,
.lewa7-container::after {
    pointer-events: none;
    backface-visibility: hidden;
}

.lewa7-back {
    position: absolute;
    inset: 0;
    background-color: var(--gold-main);
    background-image: linear-gradient(var(--gold-dark) 5%, transparent 5%) , linear-gradient(90deg, var(--gold-dark) 5%, transparent 5%);
    background-position: center;
    background-size: 20px 20px;
    border-radius: 200px 200px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    overflow: hidden;
    z-index: 2;
    border: 1px solid var(--gold-dark);
}

.lewa7-back::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background-color: var(--white);
    border: 10px solid var(--gold-dark);
    border-radius: 50%;
    backface-visibility: hidden;
    animation: animat 1.2s linear infinite;
    box-shadow:  8px 8px 30px rgba(0 0 0 / 0.1) inset,
                 0 0 20px rgba(0 0 0 / 0.1);
}

@keyframes animat {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.lewa7-back::after {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	background-color: var(--gold-dark);
	border-radius: 50%;
	backface-visibility: hidden;
	animation: openC 10s;
	box-shadow: 
                0px 0px 10px rgba(0 0 0 / 0.1) inset;
}

.back-overlay {
	width: 100%;
	height: 100%;
	backdrop-filter: blur(1px);
	background-color: rgba(0 0 0 / 0.1);
	z-index: -1;
}

.lewa7-back .message {
	position: absolute;
	left: 50%;
	background-color: var(--white);
	color: var(--gold-dark);
	border: 4px solid var(--gold-dark);
	padding: 8px;
	transform: translateX(-50%) translateY(-12%);
	bottom: 12%;
	border-radius: 12px;
}

@keyframes openC {
	from {
		transform: translate(-50%, -50%) scaleY(0);
    }
	to {
		transform: translate(-50%, -50%) scaleY(1);
	}
}

.lewa7.flip {
    transform: rotateY(180deg);
}

.lewa7-container,
.lewa7-back {
	border-radius: 200px 200px 30px 30px;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.lewa7 .lewa7-intro {
    position: absolute;
    top: 23px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    font-weight: normal;
    color: var(--white);
}

.lewa7 .lewa7-intro::before {
    content: "";
    position: absolute;
    top: -10px;
    transform: translateX(-50%);
    left: 50%;
    width: 0;
    height: 0;
    border: 4px solid var(--gold-dark);
    border-radius: 50%;
}

.lewa7 .mithal {
    position: relative;
    top: 5px;
    display: block;
    text-align: center;
    border: 2px solid var(--gold-dark);
    color: var(--black);
    border-radius: 10px 10px 10px 0;
    white-space: nowrap;
    padding: 1px 5px;
    font-size: 16px;
    max-width: 200px;
    max-height: 80px;
    overflow: auto;
    box-shadow: 0 0 10px var(--gold-shadow);
}

.lewa7 .mithal.minimize {
    font-size: 14px;
}

.hamesh {
    position: absolute;
    display: grid;
    place-items: center;
    height: 20%;
    padding: 5px;
    font-size: 0.8em;
    background-color: var(--gold-dark);
    top: 50%;
    transform: translateY(-50%);
}

.hamesh.right {
    right: 0;
    border-radius: 20px 0 0 20px;
}

.hamesh.left {
    left: 0;
    border-radius: 0 20px 20px 0;
}

.lewa7 .ta7at {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gold-dark);
    color: var(--white);
    border-radius: 0 0 30px 30px;
    font-size: 0.9em;
    display: none;
    align-items: center;
    justify-content: center;
}

.lewa7 .qid {
	color: var(--gold-dark);
}

.lewa7 .elkalamah {
    position: relative;
    display: flex;
    font-weight: normal;
    font-size: 2.3em;
    color: #fff;
    text-align: center;
    background-color: var(--gold-transparent);
    border-radius: 12px;
    padding: 0px 8px;
    margin-bottom: 10px;
}

.lewa7 .elkalamah.jatk,
.lawa7 .elkalamah.shake {
	color: transparent;
}

.lewa7 .elkalamah.jatk::before,
.lewa7 .elkalamah.shake::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    min-width: fit-content;
	border-radius: 12px;  
}

.lewa7 .elkalamah.jatk::before {
	content: "جاتك";
	color: #e00;
}

.lewa7 .elkalamah.shake::before {
	content: "ثلثت";
	color: #f00;
	font-weight: bold;
	text-shadow: 0 0 10px rgba(255 0 0 / 0.5);
}

.lewa7 .elkalamah.red {
    color: #f00;
}

.lewa7 .elkalamah.black {
    color: #000;
}

.lewa7 .elkalamah.correct {
    color: #0a0;
}

.lewa7 h3 {
    color: var(--black);
}

.lewa7 .abiat {
    overflow: auto;
    background-color: var(--gold-dark);
    border-radius: 12px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 70%;
    padding: 8px;
    height: 45%;
    min-height: 40px;
    text-align: center;
    font-size: 0.95em;
}

.abiat span {
    color: var(--gold-dark);
}

.dmair {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
    background-color: var(--gold-dark);
    border-radius: 12px;
    color: var(--white);
    display: none;
    flex-direction: column;
    gap: 8px;
    width: 50%;
    min-height: 40px;
    text-align: center;
    font-size: 0.8em;
}

.lewa7 canvas {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    width: 60%;
    height: 40%;
    min-height: 40px;
}

.lewa7 .about-me {
    position: absolute;
    bottom: 0;
    width: 48%;
    padding: 2px;
    text-align: center;
    border-radius: 12px 12px 0 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: var(--gold-dark);
    /* border-radius: 16px 16px 0 0 */;
}

.lewa7 .about-me span {
    font-size: 1em;
    color: rgb(239 228 176);
}

.lewa7 .about-me a {
    position: relative;
    font-size: 1.2em;
    color: #fff;
    text-decoration: none;
}

.lewa7 .about-me a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.lewa7 .btns {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    padding: 8px;
    gap: 6px;
    
}

.lewa7 .btns button {
    bottom: 0;
    width: 50%;
    padding: 5px;
    border: 0;
    outline: 0;
    font-size: 18px;
    color: #fff;
    background-color: var(--gold-dark);
    border-radius: 20px;
    cursor: pointer;
}

.lewa7 .btns button::before {
    display: none;
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background-color: inherit;
    bottom: 0;
    transform: rotate(45deg);
}

.lewa7 .btns button.pairO::before {
    left: -5px;
}

.lewa7 .btns button.pairT::before {
    right: -5px;
}

.lewa7 .btns button:hover,
.lewa7 .btns button:hover::before {
    opacity: 0.9;
}

.lewa7 .pairO {
    right: 0;
    border-radius: 0;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 14px;
}

.lewa7 .pairT {
    left: 0;
    border-radius: 0;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 14px;
}

.qr-code {
    position: fixed;
    right: 5%;
    bottom: 5%;
    width: 10%;
    display: flex;
}

.qr-code button {
    position: absolute;
    top: -13px;
    right: -13px;
    border: 0;
    font-size: 12px;
    background-color: #d4493c;
    color: var(--white);
    border-radius: 50%;    
    padding: 1px 4px;
}

.qr-code img {
    width: 100%;
    box-shadow: 0 0 20px rgba(0 0 0 / 0.1);
}

/* 🟤 الطرة */
.images {
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    direction: rtl;
    background-color: #efd9b0;
}

.images .image {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.images .image img {
    height: 100%;
}

.images .btn {
    position: absolute;
    bottom: 0;
    padding: 10px;
    background-color: var(--gold-main);
    color: var(--gold-dark);
    border-radius: 12px;
    margin: 20px;
    font-weight: bold;
}

.marquee-bar {
    position: absolute;
    top: 5%;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--white);
    border: 2px solid var(--gold-dark);
    border-radius: 30px;
}

.marquee-bar button {
    border: 0;
    background-color: var(--gold-dark);
    color: var(--white);
    padding: 5px 8px;
    font-weight: bold;
    font-size: 1.1em;
}

.marquee-bar .marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee .marquee-content {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
    transform: translate3d(100%,0,0);
    animation: marqueeMove 21s linear infinite;
}

.marquee .marquee-content:hover {
    animation: 0;
}

@keyframes marqueeMove {
    from {
        transform: translate3d(-100%,0,0);
    }
    to {
        transform: translate3d(100%,0,0);
    }
}

/* إيقاف الحركة عند تمرير الماوس (اختياري) */
.marquee:hover .marquee-content {
    animation-play-state: paused;
}

.menu {
    position: absolute;
    top: calc(5% + 44px);
    right: 5%;
    background-color: var(--gold-dark);
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
    height: 0;
    display: flex; 
    flex-direction: column;
    overflow: hidden;
    transition: height 0.8s;
}

.menu li {
    padding: 8px;
    color: var(--white);
}

.menu li:hover {
    color: var(--gold-light);
}

.menu.show-menu {
    height: fit-content;
    transition: height 0.8s;
}

/* ==================== تحسينات نافذة الإعلانات ==================== */
.ads-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 380px;
    padding: 20px 18px;
    background-color: #fef7e0;
    border-radius: 24px;
    border: 2px solid #dbb42c;
    box-shadow: 0 25px 45px rgba(0,0,0,0.4);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* حركة انبثاق مرنة */
    direction: rtl;
    display: block; /* لتجاوز أي إخفاء افتراضي */
}

.ads-modal.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.ads-container {
    text-align: center;
    color: #3a2c1f;
}

.ads-banner {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1; /* يحافظ على نسبة 600x300 */
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #ddd2b0;
}

.ads-title {
    color: #2b6e2f;
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: bold;
}

.ads-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.ads-action-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: #2e7d32;
    color: white;
    box-sizing: border-box;
}

.overlay {
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 11;
}

.load-progress {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 6px solid var(--white-soft);
    border-left-color: var(--white);
    border-top-color: var(--white);
    animation: turn 0.5s linear infinite;
    position: fixed;
    box-sizing: border-box;
    z-index: 12
}

@keyframes turn {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.overlay .label {
    font-size: 2em;
    margin-top: 10px;
    color: var(--white);
}

/* 🟣 البسملة */
.bsmla {
	display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    font-size: 5em;
    font-weight: normal;
    color: var(--gold-dark);
    overflow: hidden;
    opacity: 0.5;
    text-wrap: nowrap;
}

/* =========================================
   تنسيقات النوافذ والأزرار (تم نقلها من HTML)
   ========================================= */

.hidden { display: none !important; }

.modal-overlay-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.1);
    backdrop-filter: blur(3px);
    z-index: 8;
}

.premium-btn {
    width: 100%;
    background: #D4AF37; /* تمت إزالة التدرج */
    border: none;
    border-radius: 50px;
    padding: 10px 18px;
    font-weight: bold;
    font-size: 1rem;
    color: #2c2c2c;
    cursor: pointer;
    z-index: 55;
    font-family: uthmanic, sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
}

.premium-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; max-width: 380px;
    max-height: 90vh;
    overflow: auto;
    background: #fef7e0;
    border-radius: 32px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.4);
    z-index: 10;
    padding: 20px 18px 28px;
    direction: rtl;
    font-family: uthmanic, 'Segoe UI', sans-serif;
    transition: all 0.3s;
    border: 2px solid #dbb42c;
}

.modal .modal-header,
.ads-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e0b354;
    padding-bottom: 8px;
    margin-bottom: 18px;
    z-index: 10;
    background-color: inherit;
}

.modal .modal-header h3 { margin: 0; color: #a7634b; font-size: 1.5rem; }

.close-modal {
    background: #d4493c;
    color: white;
    border: none;
    width: 28px; height: 28px;
    border-radius: 50%;
    font-size: 18px;
    place-items: center;
    display: grid;
    cursor: pointer;
    line-height: 1;
    position: sticky;
    top: 0;
}

.modal-info { text-align: center; margin-bottom: 20px; }

.bank-number {
    background: #2c5a2e;
    color: #ffd966;
    padding: 5px 20px;
    border-radius: 40px;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 10px 0;
    direction: ltr;
    display: inline-block;
}

.modal-image {
    background: #ddd2b0;
    border-radius: 24px;
    padding: 12px;
    margin: 15px 0;
    text-align: center;
    border: 1px dashed #b68b40;
}

.modal-image img {
    max-width: 100%; height: auto;
    border-radius: 16px; background: white;
}

.fake-qr {
    background: #eeeeee; padding: 8px;
    font-size: 0.8rem; color: #3a2c1f;
    border-radius: 12px;
}

.input-code {
    width: 100%; padding: 12px;
    font-size: 1.2rem; text-align: center;
    border: 2px solid #d4a017; border-radius: 60px;
    background: white; font-family: monospace;
    margin: 10px 0; outline: none;
}

.input-code:focus { border-color: #d49b2a; }

.verify-btn {
    background: #2e7d32; width: 100%;
    padding: 10px; border: none;
    border-radius: 40px; color: white;
    font-weight: bold; font-size: 1.2rem;
    margin-top: 5px; cursor: pointer;
}

.color-palette {
    display: flex; justify-content: space-between;
    gap: 12px; margin-top: 20px; margin-bottom: 10px;
}

.color-option {
    flex: 1; height: 55px;
    border-radius: 40px; cursor: pointer;
    border: 3px solid #fff3cf;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: 0.2s;
}

.color-option.active {
    border: 4px solid gold; transform: scale(1.02);
    box-shadow: 0 0 0 3px white, 0 0 0 5px #ffc107;
}

.premium-badge {
    background: #ffb347; padding: 6px;
    border-radius: 24px; margin-top: 12px;
    font-size: 0.85rem; text-align: center;
    color: #3b2a1f;
}

.payment-qrcode {
    position: relative;
    background-color: #ffffff;
    padding: 5px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    --logo: "";
}

.payment-qrcode::before {
    content: "";
    position: absolute;
    background-image: var(--logo);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--gold-dark);
    width: 100%;
    height: 30px;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.success-msg {
    color: #2b6e2f; background: #e9f5e6;
    padding: 6px; border-radius: 32px;
    margin: 8px 0; text-align: center;
}

/* تنسيقات زر التبديل (Toggle Switch) للإعدادات */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  direction: ltr; /* لضمان حركة الزر بشكل صحيح */
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.switch .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

.switch input:checked + .slider {
  background-color: #2b6e2f; /* اللون الأخضر عند التفعيل */
}

.switch input:checked + .slider:before {
  transform: translateX(24px);
}

.switch .slider.round {
  border-radius: 34px;
}

.switch .slider.round:before {
  border-radius: 50%;
}

/* تحسينات التوافق */
.lewa7-container, .lewa7-back { transition: background-color 0.3s ease, background-image 0.2s; }
.btns button, .about-me, .news-progress { transition: background-color 0.2s; }
.marquee-content b { font-size: 0.9rem; }

/* تأثيرات الـ Toast التلقائية */
/* 🔔 نظام الإشعارات الذكي (Toast Notification) */
.toast {
    position: fixed;
    bottom: -100px; /* مخفي أسفل الشاشة */
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-dark); /* لون بني متناسق */
    color: var(--white-normal);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1em;
    font-weight: bold;
    transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* حركة انسيابية مرنة */
    cursor: pointer;
}

/* الحالة النشطة لظهور الإشعار */
.toast.show {
    bottom: 40px; 
}

/* تنسيق رسائل المحادثة */
.bot-msg, .user-msg {
    padding: 10px 15px;
    border-radius: 20px;
    margin-bottom: 8px;
    max-width: 80%;
    word-wrap: break-word;
    display: inline-block;
    clear: both;
}
.bot-msg {
    background: #e9f5e6;
    color: #2b6e2f;
    border-bottom-right-radius: 4px;
    float: right;
}
.user-msg {
    background: #dbb42c;
    color: #3a2c1f;
    border-bottom-left-radius: 4px;
    float: left;
}
#chatbotMessages {
    display: flex;
    flex-direction: column;
}