:root {
    --primary-color: #FF6934;
    --secondary-color: #D11DA8;
    /* --primary-color: #868686;
    --secondary-color: #000000; */
    --text-color: #333;

    --font-size-large: 2rem;
    --font-size-small: 1rem;

    --padding: 16px;
    --margin: 20px;

    --gradient: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    --dark-gradient: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(70, 75, 90, 1) 100%);;
}

* {
    transition: all 0.5s;
}
input::placeholder {
    color: #aaa!important; /* Replace with your desired color */
    font-style: italic; /* Optional styling */
    font-weight: 400;
}
  
input:focus::placeholder {
    color: #aaa!important; /* Optional: Change color on focus */
}

/* For WebKit Browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 5px; /* Width of the vertical scrollbar */
    height: 5px; /* Height of the horizontal scrollbar */
}
  
::-webkit-scrollbar-thumb {
    background-color: #888; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the scrollbar thumb */
}
  
::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Darker color when hovering over the scrollbar */
}
  
::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
}

#txt_phrase {
    padding-left: 1rem;
}

/* #message-box {
    font-size: 0.85rem;
    background-color: #ddd;
    border-radius: 1rem 1rem 0 0;
    border: 1px solid #ddd;
    border-bottom-color: var(--secondary-color);
} */

/* #message-box {
    font-size: 0.85rem;
    background-color: #ddd;
    border-radius: 0 0 0.6rem 0.6rem;
    border: 1px solid #ddd;
    border-top: 2px solid var(--primary-color);
}

#message-box:focus {
    border: 1px solid #ddd;
    border-top: 2px solid var(--secondary-color);
} */

.btn:hover {
    color: #fff;
}

.form-control:focus {
    box-shadow: none;
    border-color: transparent;
}

.btn {
    position: relative;
    display: inline-block;
    border: none;
    overflow: hidden;
    cursor: pointer;
    outline: none;
    transition: background 1s;
}
    
.btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 300%;
    height: 300%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 80%);
    transform: translateX(-150%) rotate(45deg);
    z-index: 1;
    pointer-events: none;
    transition: transform 1s ease-in-out;
}
  
.btn:hover::before {
    transform: translateX(150%) rotate(45deg);
}
  
.btn span {
    position: relative;
    z-index: 2;
}

body {
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-optical-sizing: auto;
    margin-top: 20px;
    background-size: cover;
}

#main {
    background: url(images/background.png);
    background-position: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    width: 8rem!important;
    margin-right: 0!important;
}

.navbar-nav .nav-link {
    margin-right: 15px;
    color: #fff;
    border-radius: 3rem;
    padding: 0.3rem 1rem!important;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
}


.nav-link.active::before {
    background: linear-gradient(to right, gray, black);
}

.navbar-nav {
    padding: 1rem;
    background: #000;
    background: rgb(0, 0, 0);
    background: var(--dark-gradient);
    border-radius: 4rem;
    color: #fff;
    height: 4.4rem;
}

.header-text {
    font-size: 3rem;
    margin-bottom: 0.2rem;
}

.btn-signup {
    height: 4.4rem;
}

.gradient-bg {
    background: var(--gradient);
    color: #fff;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.gradient-border {
    position: relative;
    display: inline-block;
    z-index: 1;
    background: var(--gradient);
    overflow: hidden;
    border: 2px solid transparent;
    color: var(--secondary-color);
    font-weight: bolder;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    border-radius: inherit;
}

@media (max-width: 992px) {
    .navbar-nav {
        display: none;
    }
}




#users-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

#chat-container {
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}

.message {
    position: relative;
    opacity: 0; /* Start hidden */
    transform: translateY(50px); /* Start below its position */
    animation: slideIn 0.4s ease-out forwards; /* Slide in and stay */
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-container {
    /* height: 85vh; */
}

.btn-start-chat {
    border-radius: 3rem;
    height: 3.4rem;
    width: 14rem;
}

.btn-start-chat::before {
    background: #fff;
}

.btn-leave-chat {
    border-radius: 3rem;
    height: 2.2rem;
    width: 6rem;
    border: 0;
    font-weight: bold;
}

.chat-header.mobile .btn-leave-chat {
    width: 2.2rem!important;
}

.btn-leave-chat::before {
    background: #fff;
}

.btn-view-all {
    border-radius: 3rem;
    height: 2.6rem;
    width: 8rem;
}

.btn-view-all::before {
    background: #fff;
}

.url-text-parent {
    border: 2px solid var(--primary-color);
    border-radius: 3rem;
    height: 3.4rem;
    max-width: 350px!important;
}

.btn-gradient {
    background: var(--gradient);
    border-radius: 4rem!important;
    font-size: 1rem;
    width: 8rem;
    color: #fff;
}

.btn-dark-gradient {
    background: var(--dark-gradient);
    border-radius: 4rem!important;
    font-size: 1rem;
    width: 8rem;
    color: #fff;
}

.url-text {
    background: #fff;
    border-radius: 3rem;
    font-size: 1rem;
}

.home-img {
    border: 0.8rem solid #111;
    border-radius: 4rem 4rem 0 0;
    border-bottom: 0;
    top: 3rem;
    position: relative;
}

.chat-messages {
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    box-shadow: 0.4rem 0.7rem 1.2rem 0.2rem #ddd;
    margin: 0 1rem;
    padding: 0;
}

.chat-message-list {
    margin-bottom: 1vh;
    position: relative;
}

#chat-messages {
    height: 54vh;
    padding: 0.6rem 1rem 2rem;
    overflow-y: scroll;
}

.msg-preview-image {
    width: 3.4rem;
    border-radius: 0.3rem;
}

.video-player {
    width: auto;
    max-height: 10rem;
    min-height: 5rem;
    border-radius: 0.7rem;
}

#typing-indicator {
    height: 2rem;
}

#typing-block {
    padding-left: 1rem;
    height: 2rem;
}

.photos-files {
    flex: 1; 
    background: #fff;
    border-left: 1px solid #ddd;
    padding: 20px;
}
.chat-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    /* box-shadow: 0 0 0.5rem 0.1rem #ddd; */
}
.message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.message.left {
    flex-direction: row;
}
.message.right {
    flex-direction: row-reverse;
}
.message.left .content {
    border-top-left-radius: 0!important;
}
.message.right .content {
    border-bottom-right-radius: 0!important;
}
.main-avatar {
    width: 3.4rem;
    height: 3.4rem;
}
.avatar {
    width: 2.6rem;    
    height: 2.6rem;
    background-color: #232323;
    color: #fff;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 10px;
    font-size: 1.4rem;
    font-weight: 500;
}

.message .content {
    background-color: #f1f1f1;
    padding: 10px 15px 10px 10px;
    border-radius: 10px;
    max-width: 70%;
    position: relative;
}
.message.initiator .content {
    background-color: #e9f5ff;
}

.photos-files-container {
    text-align: center;
    background: white;
    border-radius: 16px;
    box-shadow: 0.4rem 0.7rem 1.2rem 0.2rem #ddd;
    padding: 20px;
    width: 300px;
}

iframe {
    margin: 1rem 0 0.4rem;
}

.photos-section h6,
.files-section h6 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.side-file-media {
    height: 1.3rem;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.photos-grid img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    padding: 0.1rem;
    opacity: 0.3;
}

.photos-grid img.active {
    opacity: 1;
}

.photos-grid .placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    color: #555;
    background: linear-gradient(135deg, #ffe0f3, #fdeefc);
    border-radius: 8px;
    text-align: center;
}

.files-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

.files-list li {
    display: flex;
    padding: 0.5rem;
    font-size: 14px;
    color: #333;
}

.files-list li i {
    margin-right: 10px;
    font-size: 18px;
}

.view-all-btn {
    margin-top: 15px;
    text-align: center;
}

#view-status {
    font-size: 0.8rem;
    color: rgb(56, 234, 56);
}

#active-status {
    background-color: rgb(56, 234, 56);
    height: 0.9rem;
    width: 0.9rem;
    border-radius: 0.9rem;
    border: 1px solid #e5e5e5;
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: -0.1rem;
}






.emoji-picker-container {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    padding: 10px;
}

.basic-addon2 {
	width: 5rem;
}

#emoji-grid {
    right: 2%;
    background-color: #fff;
    position: absolute;
    bottom: 0vh;
    width: 96%;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 0 1.5rem 0rem #b7b7b7;
    z-index: 10000;
}

/* #emoji-grid-arrow {
    content: "";
    position: absolute;
    bottom: 15vh;
    right: 10rem;
    border: 1rem solid transparent;
    border-top-color: #b7b7b7;
    border-bottom: 0;
    border-right: 0;
    z-index: 10000;
} */

.emoji, .btn_emoji, .chat-bubble, #message {
	font-family: 'Helvetica Neue', sans-serif, "Noto Color Emoji";
	font-weight: 400;
	font-style: normal;
}

.emoji {
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.emoji.animate {
    transform: scale(1.3);
    opacity: 0.7;
}


#emoji-grid-search {
    height: 3rem;
    font-size: 1rem;
}

#emoji-grid-smiley {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(24px, 1fr));
    gap: 10px;
    padding-right: 0.5rem;
    margin-bottom: 1.5rem;
}

.emoji {
    font-size: 22px;
    cursor: pointer;
    text-align: center;
    height: 2rem;
}

.emoji-text {
    font-size: 22px;
}

.font-large .emoji-text {
	font-size: 46px;
}

.btn_emoji {
    cursor: pointer;
    text-align: center;
/*    margin-right: 0.3rem;*/
}




.emoji {
    font-size: 1.5em; /* Bigger emojis */
}

.single-emoji .emoji {
    font-size: 4em; /* 2x size for single emojis */
}

.text {
    font-size: 12px; /* Smaller text */
    vertical-align: middle;
}



.modal-custom-width .modal-dialog {
    max-width: 55%;
}

.modal-dialog, .modal-content, .modal-body, #modal_img {
    border-radius: 2rem!important;
}

#text_copy_link, #text_copy_phrase {
    height: 2.6rem;
    line-height: 1.8;
}

.link-left {
    height: 2.6rem;
    font-weight: bold;
    display: inline-block;
    text-align: center!important;
    min-width: 6rem;
    background-color: rgb(255, 235, 238);
    line-height: 1.8;
    border-radius: 0.4rem 0 0 0.4rem!important;
}

.link-right {
    width: 2.8rem;
    height: 2.6rem;
    border-radius: 0 0.4rem 0.4rem 0!important;
}

.cursor-pointer {
    cursor: pointer!important;
}

#countdown-timer {
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 700;
}

#progress-bar-container {
    width: 100%;
    background-color: #e0e0e0;
    height: 8px;
    margin-top: 10px;
}

#modal-image-preview {
    width: auto;
    height: 70vh;
}

#progress-bar {
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    height: 100%;
}

.footer {
    background: rgb(24,24,24);
    color: #fff;
    z-index: 100;
    position: relative;
}

.footer h4 {
    font-weight: 600;
}

/* .footer-btn img {
    border-radius: 50%;
} */

.footer .quick-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer .quick-links a:hover {
    text-decoration: underline;
}

.footer .feedback-section input {
    border: none;
    border-radius: 20px;
    padding: 5px 15px;
    outline: none;
}

.footer .feedback-section .submit-btn, #join-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 3rem;
    color: white;
    padding: 10px;
    display: flex;
    width: 13rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.footer .social-icons a {
    color: #fff;
    font-size: 18px;
    margin: 0 3px;
}

.footer .social-icons img {
    height: 2.4rem;
    width: 2.4rem;
}

.footer .social-icons a:hover {
    color: #ff7eb3;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid #333;
    padding-top: 10px;
}

.text-underline-color {
    border-bottom: 1px solid #7e1d45;
    padding-bottom: 0.5rem;
}

.chat-footer-wrapper {
    padding: 0 0.5rem;
}

.chat-footer {
    padding: 0 0.6rem;
}

.footer-btn img {
    height: 1.2rem;
    width: 1.2rem;
    position: relative;
}

.footer-btn {
    margin: 0.7rem 0.8rem !important;
    cursor: pointer;
    height: 1.6rem;
    width: 1.6rem;
    border-radius: 50%!important;
}

.footer-btn.send-button {
    margin: 0.6rem 0.6rem 0!important;
}

.footer-btn #send-button {
    height: 2.4rem;
    width: 2.4rem;
}

/* General Modal Styling */
.modal-content {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  .modal-header {
    background: linear-gradient(135deg, var(--dark-gradient), var(--secondary-color));
    color: #fff;
    border-bottom: none;
    padding: 1rem 1.5rem;
  }
  .modal-header .btn-close {
    color: #fff;
    opacity: 0.8;
  }
  .modal-header .btn-close:hover {
    opacity: 1;
  }
  .modal-body {
    background-color: #f9f9f9;
    padding: 1.5rem;
  }
  
  /* Tabs Navigation */
  .nav-tabs {
    border-bottom: 2px solid #ddd;
  }
  .nav-tabs .nav-link {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    color: #333;
    border: none;
    border-bottom: 3px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
    font-weight: 600;
  }
  .nav-tabs .nav-link:hover {
    color: var(--primary-color);
  }
  
  /* Tab Content Styling */
  .tab-content {
    margin-top: 1rem;
  }
  
  /* Images Tab */
/* Images Tab - Grid Gallery */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 1rem;
  }

  .media-thumbnail {
    width: 100%;
    aspect-ratio: 1; /* Ensures all images are square */
    border-radius: 8px;
    object-fit: cover;
    background-color: #eaeaea;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .media-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  
  /* Links Tab */
  .list-group {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .list-group-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.75rem;
  }
  .list-group-item a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    word-wrap: break-word;
  }
  .list-group-item a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
  }
  .list-group-item p {
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
    color: #555;
  }
  
  /* Files Tab */
  .list-group-item .file-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .list-group-item .file-name {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
  }
  .list-group-item .btn-primary {
    background: #6c63ff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .list-group-item .btn-primary:hover {
    background: #3b3b98;
    transform: scale(1.05);
  }
 
  .modal-title {
    color: var(--primary-color)
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .modal-dialog {
      margin: 0 10px;
    }
    .nav-tabs .nav-link {
      padding: 0.5rem 1rem;
    }
    .gallery {
      grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
    .media-thumbnail {
      height: 80px;
    }
  }
  
  #feedbackTextarea {
    border-radius: 1rem;
    padding: 1rem;
  }

  .circle-container {
    display: flex;
    align-items: center;
}

.circle {
    position: relative;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: bold;
    border: 1px solid var(--secondary-color);
    margin-left: -8px;
}

.circle-container.mobile .circle {
    width: 2rem;
    height: 2rem;
    font-size: 0.7rem;
}

.circle:first-child {
    margin-left: 0; /* No negative margin for the first circle */
}

.status {
    position: absolute;
    bottom: 30px;
    right: 32px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid gray;
    text-align: center;
    padding-bottom: 0.3rem;
    cursor: pointer;
    background: red;
}

.mobile .status {
    bottom: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
}

.status .fa-times, .status .fa-plus {
    bottom: 0.3rem;
    position: relative;
    color: #fff;
    font-size: 0.8rem;
}

.mobile .status .fa-times, .mobile .status .fa-plus  {
    bottom: 0rem;
}

.status-text {
    bottom: -0.8rem;
    position: absolute;
    color: #fff;
    border: 1px solid gray;
    padding: 0.15rem 0.25rem 0;
    border-radius: 0.5rem;
    font-size: 0.6rem;
}

.notification-block {
    color: #303030;
    background-color: #e4e4e4;
    font-weight: bold;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    line-height: 0.8;
    font-size: 0.6rem;
    margin-bottom: 1rem;
}

.notification-block::before {
    background-color: #fff;
}

.offcanvas-body ul {
    list-style: none;
    padding: 0;
}

.offcanvas-body ul a {
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 1rem;
    background: #eee;
}

.footer-group {
    padding: 0.3rem;
    width: 92%;
    display: inline-flex;
    font-size: 0.85rem;
    background-color: #ededed;
    border-radius: 0.8rem 0.8rem 0 0!important;
    border: 1px solid #ddd;
    border-bottom: 2px solid var(--secondary-color);
}

.footer-group #message-box {
    background-color: transparent;
    border: 1px solid transparent;
    height: 3rem;
}

.footer-group:focus {
    border: 1px solid #ddd;
    border-top: 2px solid var(--secondary-color);
}

.date-time {
    display: block;
    text-align: right;
    color: #1e1e1e!important;
    font-size: 0.6rem;
    line-height: 1.2;
    margin-top: 0.4rem;
    font-weight: 250;
}

.mobile .date-time {
    margin-top: 0!important;
    font-size: 0.7rem!important;
    line-height: 1.1;
}

.mobile {
    padding: 0;
    margin: 0;
}

.mobile .footer-group {
    width: 85%;
    display: inline-flex;
    font-size: 0.85rem;
    background-color: #ffffff;
    border-radius: 2rem!important;
    border: 1px solid #ddd;
}

.mobile .footer-btn {
    box-shadow: unset;
}

.mobile .footer-btn.send-button {
    margin: 0.3rem;
}

.mobile .footer-btn #send-button {
    height: 2.2rem;
    width: 2.2rem;
}

.mobile #main {
    padding: 0;
    background-position: center;
    background-size: cover;
}

.mobile .chat-container {
    height: 98vh;
}

.mobile #chat-messages {
    height: 68vh;
}

.mobile .chat-messages {
    background: transparent;
    border-radius: 0;
    box-shadow: unset;
    margin: 0;
}

.mobile .chat-header {
    padding: 0.5rem 0;
    box-shadow: unset;
}

.dropstart .dropdown-toggle::before {
    display: none;
}

.btn-mobile-menu {
    border: 1px solid #ddd;
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 0 0.3rem 0.05rem #ddd;
}

.mobile-menu-icon {
    height: 1rem;
    width: 1rem;
}

.ads {
    border-radius: 0.5rem!important;
}

.video-ads {
    border-radius: 0.5rem!important;
}

.mobile .message .content {
    max-width: 55%;
}


#show-footer {
    padding: 0.3rem 1rem;
    background: #000;
    color: #fff;
    border-radius: 1rem;
}

#modal-image-preview {
    transition: transform 0.25s ease;
    cursor: pointer;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 70vh;
}

.modal-body {
    overflow: hidden;
    position: relative;
}

.zoom-container {
    overflow: hidden;
    position: relative;
}

.text-pink {
    color: #f50057;
  }
  .hiw-card {
    background: #181617;
    height: 16rem;
    border-radius: 1.2rem;
    border: 2px solid #1e1e1e!important;
    margin-top: 2rem;
  }
  .abt-card {
    background: #ffffff;
    border-radius: 1.2rem;
    border: 2px solid #eee!important;
    margin-top: 2rem;
  }
  .abt-card .small {
    color: #111;
    margin-bottom: 0;
  }
  .abt-card .card-body {
    padding: 0;
    border-radius: 1.2rem;
  }
  .abt-card .card-body img {
    border-radius: 1.2rem;
  }
  #howItWorksModal .card img {
    border-radius: 50%;
  }
  .card.bg-danger {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  }
  .card.bg-orange {
    background: var(--primary-color);
  }
  .card h6 {
    font-size: 1rem;
    font-weight: bold;
  }
  .card p {
    font-size: 0.875rem;
    color: #adb5bd;
  }
  
  #chat-messages.drag-over {
    background-color: #cccccc;
    border: 2px solid #b7b7b7;
    border-radius: 1rem;
  }

.drop-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: #626262;
    font-weight: bold;
    pointer-events: none;
}

.container-69d58d54a862e8b1f120316df53dbd03-nn {
    margin-top: 1rem;
    margin-left: 1rem;
    float: left;
}

#container-76e126db4491927b97205eab3adc8a4b {
    margin-top: 1rem;
    margin-right: 1rem;
    float: right;    
}

#container-76e126db4491927b97205eab3adc8a4b .container-76e126db4491927b97205eab3adc8a4b__bn-container {
    width: 300px;
    padding: 0!important;
    margin-bottom: 1rem!important;
}