.mb_page_header{
	text-align: end;
}

.mb_modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: none; /* Changed from flex !important to none */
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.wizard-container {
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #e2e8f0;
	max-height: 85vh;
}

.mb_modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.wizard-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8f0;
  background-color: #f8fafc;
}

.wizard-content {
  padding: 24px 32px;
  overflow-y: auto;
  flex: 1;
  max-height: 70vh;
  display: block;
  visibility: visible;
  opacity: 1;
}

.wizard-footer {
  padding: 12px 20px;
  border-top: 1px solid #e2e8f0;
  background-color: #f8fafc;
  display: block;
  visibility: visible;
  text-align: right;
}

.wizard-steps {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  padding: 0 8px;
}

.wizard-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: #e2e8f0;
  z-index: 1;
}

.wizard-step.active:not(:last-child)::after {
  background-color: #2563eb;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.wizard-step.active .step-number {
  background-color: #2563eb;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-label {
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
}

.wizard-step.active .step-label {
  color: #2563eb;
  font-weight: 500;
}

.wizard-content {
  padding: 24px 32px;
  overflow-y: auto;
  flex: 1;
  max-height: 70vh;
  display: block;
  visibility: visible;
  opacity: 1;
}

.wizard-step-content {
  display: none;
}

.wizard-step-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
  visibility: visible;
  opacity: 1;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-content-inner {
  display: flex;
  flex-direction: column;
}

.step-content-inner h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px 0;
  color: #1e293b;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}

#loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loading-indicator .loader-box {
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
    max-width: 90%;
    width: 400px;
    box-sizing: border-box;
}

#loading-indicator .loader-spinner {
    width: 50px;
    height: 50px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

#loading-indicator .loader-message {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
    word-wrap: break-word;
    line-height: 1.5;
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

.wizard-columns {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.wizard-columns.select-bottype-main{
	display: block;
}

.wizard-column {
  flex: 1;
  min-width: 0; /* Prevent flex items from overflowing */
  display: block;
  visibility: visible;
}

.form-section {
  background-color: #f8fafc;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
  display: block;
  visibility: visible;
  opacity: 1;
}

.form-section:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #1e293b;
  padding-bottom: 6px;
  border-bottom: 1px solid #e2e8f0;
}

.form-row {
  margin-bottom: 12px;
  display: block;
  visibility: visible;
  opacity: 1;
}

.cm-radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin: 8px 0 24px;
  align-items: start;
}

.cm-radio input[type="radio"]{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cm-radio {
  display: block;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  padding: 0;
}

.cm-card{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  background:#fff;
  transition: border-color .15s ease, box-shadow .15s ease, transform .06s ease;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
}

.cm-icon{
  width:48px;
  height:48px;
  flex:0 0 48px;
  border-radius:8px;
  padding:6px;
  background:linear-gradient(180deg,#111827,#374151);
  fill: none;
  stroke: #fff;
}

.cm-text{ flex:1; min-width:0; }
.cm-title{
  font-weight:600;
  font-size:15px;
  color:#111827;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.cm-check{
  flex:0 0 28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transform:scale(.8);
  transition:opacity .12s ease, transform .12s ease;
  color:#fff;
  background:linear-gradient(180deg,#059669,#10b981);
  border-radius:6px;
  width:28px;
  height:28px;
}

.cm-radio:hover .cm-card,
.cm-radio input[type="radio"]:focus + .cm-card{
  border-color:#cbd5e1;
  box-shadow: 0 6px 18px rgba(2,6,23,0.06);
  transform: translateY(-2px);
}

.cm-radio input[type="radio"]:checked + .cm-card{
  border-color:#10b981;
  box-shadow: 0 8px 30px rgba(16,185,129,0.12);
}
.cm-radio input[type="radio"]:checked + .cm-card .cm-check{
  opacity:1;
  transform:scale(1);
}

.cm-radio input[type="radio"]:focus + .cm-card{
  outline: 3px solid rgba(34,197,94,0.12);
  outline-offset: 2px;
}

.lc-notice-box {
    border: 1px solid #e74c3c;
    background-color: #fdecea;
    color: #c0392b;
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.6;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.lc-notice-box p {
    margin: 0;
}



.image-upload-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.image-upload-container button {
  min-width: 120px;
}

.image-preview {
  width: 80px;
  height: 80px;
  background-color: #f1f5f9;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.75rem;
  border: 1px dashed #cbd5e1;
  transition: all 0.2s ease;
}

.image-preview:hover {
  border-color: #94a3b8;
}

.bot-instructions {
  margin: 16px 0;
  padding-left: 20px;
  color: #334155; /* slightly darker gray for text */
  font-size: 0.95rem;
  line-height: 1.6;
}

.bot-instructions li {
  margin-bottom: 12px;
}

.error-message{
	background: #ffe6e6;
    color: #d8000c;
    border: 1px solid #d8000c;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.success-message{
	background: #e6fff3;
    color: #152a0a;
    border: 1px solid #152a0a;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.validation-error{
	color: #d8000c;
}

/* Toggle Switch */
.toggle-container {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.toggle-label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    margin-right: 10px;
	margin-bottom: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #2563eb;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

/* card design */
.mb_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  margin: 20px;
}

/* Card Styling */
.mb_card {
  background: #f7f8fa;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mb_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Card Header */
.mb_card_header {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.mb_card_header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  border: 2px solid #ddd;
}

.mb_card_header .info h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.mb_card_header .info span {
  font-size: 14px;
  color: #777;
}

/* Card Body */
.mb_card_body {
  padding: 15px;
  flex: 1;
}

.mb_card_body p {
  font-size: 14px;
  color: #555;
  margin: 0 0 10px;
}

/* Labels */
.mb_label {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
  margin-right: 5px;
  font-weight: 500;
}

.mb_label.active {
  background-color: #e6f7ed;
  color: #1a8f4b;
}

.mb_label.inactive {
  background-color: #fbeaea;
  color: #d9534f;
}

.mb_label.type {
  background-color: #f0f3ff;
  color: #3f51b5;
}

/* Card Footer */
.mb_card_footer {
  padding: 12px 15px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
/* card design */

.mb_bot_not_found{
	padding: 15px;
    background-color: #f7f8fa;
    border: 1px solid #bbc1cd;
    color: #7b879f;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    margin: 10px 0;
}

/* preview css */

.mb_review_card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.mb_section_heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  border-left: 4px solid #0077ff;
  padding-left: 8px;
}

.mb_review_row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
 align-items: center;
}

.mb_review_row .mb_review_label {
  font-weight: 500;
  color: #333;
  width: 50%;
 word-wrap: break-word;
}

.mb_review_row .mb_review_value {
  font-weight: 400;
  color: #555;
  width: 50%;
 word-wrap: break-word;
}

.mb_review_thumb {
  max-width: 100px;
  border-radius: 8px;
}

.mb_telegram_card {
  border-left: 4px solid #2ca5e0; /* Telegram blue */
}
/* preview css */

.modal-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.i_table{
	border-collapse: separate;
    border-spacing: 10px;
}

select.blank_field, input.blank_field {
    border: 2px solid tomato !important;
}

.fetch_support_data_div .error-message{
	margin-bottom: 12px;
}

.mode_label_div{
	margin-bottom: 0.5rem;
}


.ci_radio_group {
  display: inline-flex;
  gap: 10px;
  background: #f8fafc;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.ci_radio_option {
  position: relative;
  cursor: pointer;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0;
}

.ci_radio_option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ci_custom_radio {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  background: transparent;
}

.ci_radio_option input[type="radio"]:checked + .ci_custom_radio {
  background: linear-gradient(135deg, #3146c5, #06b6d4);
  color: #fff;
  box-shadow: 0 4px 12px rgba(59,130,246,0.25);
  transform: translateY(-1px);
}

.ci_radio_option input[type="radio"]:focus + .ci_custom_radio {
  outline: 3px solid rgba(59,130,246,0.3);
  outline-offset: 3px;
}

/* broadcast add css */
.bc-section.bc-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.bc-subheading {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.bc-input, .bc-textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

.bc-textarea {
    min-height: 100px;
    resize: vertical;
}

.bc-status {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: #d8000c;
}
#schedule_broadcast, #view_broadcasts{
	width: 100%;
}

.bc-notice {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.bc-notice strong {
    color: #7a5300;
}

.bc-note {
    font-size: 14px;
    color: #6c757d;
    margin-top: 5px;
}

/* broadcast add css */

/* broadcast view css */

.bc-table-responsive {
    width: 100%;
    overflow-x: auto; /* Allows horizontal scrolling on small screens */
}

.bc-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.bc-table th, .bc-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.bc-table th {
    background-color: #f2f2f2;
}

.bc-error {
    color: red;
    margin-top: 10px;
}

.bc-loading {
    font-style: italic;
    color: #555;
}
/* broadcast view css */

/* broadcast popup */
.bc-popup {
    display: none; /* hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

/* Popup content */
.bc-popup-content {
    background: #fff;
    margin: 80px auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    position: relative;
}

/* Close button */
.bc-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

/* Reuse your existing textarea */
.bc-popup-content .bc-textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    min-height: 120px;
    resize: vertical;
    box-sizing: border-box;
}

/* broadcast popup */



.s_dashboard {
    max-width: 1400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Section Styles */
.s_bot-section {
    background: #f4f6fa;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.s_section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

/* Container for multiple bots */
.s_bots-container {
    display: flex;
    gap: 16px;
    flex-wrap: wrap; /* allow wrapping on smaller screens */
}

/* Bot Card */
.s_bot-card {
    flex: 1 1 calc(33.33% - 16px); /* 3 per row on large screens */
    background: #fafafa;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 250px;
}

.s_bot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.s_bot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s_bot-name {
    font-weight: 600;
    font-size: 18px;
}

.s_bot-status {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 8px;
    color: #fff;
}

.s_bot-status.s_online { background-color: #4ade80; }
.s_bot-status.s_offline { background-color: #f87171; }

/* Bot stats grid */
.s_bot-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.s_stat {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
}

.s_stat-title {
    color: #555;
}

.s_stat-value {
    font-weight: 700;
    color: #111;
}

/* Action Button */
.s_bot-action button {
    margin-top: 10px;
    background-color: #3b82f6;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.s_bot-action button:hover {
    background-color: #2563eb;
}

/* Section Specific Border Colors */
.s_lead-gen .s_bot-card { border-left: 4px solid #3b82f6; }
.s_broadcast .s_bot-card { border-left: 4px solid #f59e0b; }
.s_ai-builder .s_bot-card { border-left: 4px solid #8b5cf6; }

.s_no-bots-notice {
    padding: 20px;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: #b45309;
    width: 100%;
}

.s_popup {
    display: none; /* hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

/* Popup content */
.s_popup_content {
    background: #fff;
    margin: 80px auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    position: relative;
}

/* Close button */
.s_popup_close {
    position: absolute;
    top: 0px;
    right: 5px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}
.ai-credit-wrap, .ai-hero, .ai-logs-list, .ai-log-card {
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
}
.ai-hero-illustration svg { max-width: 100%; height: auto; display: block; }
.ai-credit-wrap { font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; max-width:1100px; margin:20px auto; color:#222; }
.ai-hero { display:flex; gap:24px; align-items:center; background:#fff; border:1px solid #e6e9ee; padding:24px; border-radius:12px; box-shadow:0 6px 18px rgba(17,24,39,0.04); }
.ai-hero-left { flex:1; }
.ai-hero-right { width:160px; display:flex; align-items:center; justify-content:center; }
.ai-hero h2 { margin:0; font-size:22px; }
.ai-hero-sub { margin:6px 0 16px; color:#6b7280; }
.ai-credit-badge { display:inline-block; margin:8px 0; background:linear-gradient(90deg,#6a11cb,#2575fc); color:#fff; font-weight:700; padding:12px 22px; border-radius:999px; font-size:20px; box-shadow:0 6px 20px rgba(37,117,252,0.12);white-space: nowrap; }
.ai-hero-actions { margin-top:14px; display:flex; gap:8px; }
.ai-hero-actions .button { min-width:120px; }

.ai-logs { margin-top:20px; }
.ai-logs-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:12px; }
.ai-logs-header h3 { margin:0; }
.ai-logs-meta { color:#6b7280; font-size:13px; }

.ai-logs-list { display:flex; flex-direction:column; gap:12px; }
.ai-log-card { display:grid; grid-template-columns:120px 1fr 120px 160px; gap:12px; align-items:center; padding:14px; background:#fff; border-radius:10px; border:1px solid #edf2f7; box-shadow:0 4px 12px rgba(15,23,42,0.03); align-items: start;}
.ai-log-badge { width:96px; padding:10px; border-radius:8px; text-align:center; font-weight:700; }
.ai-log-type-add { background:linear-gradient(180deg,#dafbe6,#d7f9e5); color:#0b7a3e; }
.ai-log-type-deduct { background:linear-gradient(180deg,#ffe9e9,#ffecec); color:#a51f2b; }
.ai-log-type-used { background:linear-gradient(180deg,#fff6e6,#fff7ea); color:#b35b00; }

.ai-log-desc { color:#333; font-size:14px; }
.ai-log-credits { text-align:right; font-weight:800; font-size:16px; }
.ai-log-bot, .ai-log-module { color:#6b7280; font-size:13px; }

.ai-logs-pagination { margin-top:14px; display:flex; justify-content:center; gap:8px; align-items:center; }
.ai-page-btn { background:#fff; border:1px solid #e6e9ee; padding:8px 12px; border-radius:8px; cursor:pointer; }
.ai-page-btn.active { background:#2575fc; color:#fff; border-color:#2575fc; box-shadow:0 6px 16px rgba(37,117,252,0.18); }
.ai-page-btn:disabled { opacity:0.5; cursor:not-allowed; }

.ai-loader { padding:28px; text-align:center; color:#6b7280; }
.ai-empty { padding:28px; text-align:center; color:#6b7280; background:#fff; border:1px dashed #e6e9ee; border-radius:8px; }
.ai-log-desc, .ai-log-bot, .ai-log-module {
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* store page css */

.sg_not_found_wrapper {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  margin: 20px 0;
}
.sg_not_found_title { font-size: 28px; margin-bottom: 8px; color: #222; }
.sg_not_found_text { color: #666; margin-bottom: 14px; }

.sg_store_header {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}
.sg_store_avatar { width:120px; height:120px; border-radius:12px; overflow:hidden; flex:0 0 120px; box-shadow:0 6px 18px rgba(0,0,0,0.06); }
.sg_store_avatar img { width:100%; height:100%; object-fit:cover; display:block; }
.sg_store_title { margin:0 0 6px 0; font-size:22px; color:#222; }
.sg_tagline { color:#666; margin-bottom:8px; font-size:15px; }
.sg_store_meta { margin-top:8px; display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.sg_meta_item { font-size:13px; color:#555; background:#f7f8fa; padding:6px 10px; border-radius:8px; border:1px solid #eee; }

/* greed layout */
.sg_grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; margin: 20px 0; }
.sg_card { background:#f7f8fa; border-radius:12px; box-shadow:0 4px 12px rgba(0,0,0,0.08); overflow:hidden; display:flex; flex-direction:column; transition:transform .18s ease, box-shadow .18s ease; }
.sg_card:hover { transform:translateY(-6px); box-shadow:0 10px 26px rgba(0,0,0,0.12); }
.sg_card_header { display:flex; align-items:center; padding:14px; border-bottom:1px solid #eee; }
.sg_bot_icon { width:64px; height:64px; border-radius:10px; object-fit:cover; margin-right:14px; border:2px solid #e9e9e9; background:#fff; }
.sg_info h3, .sg_bot_title { margin:0; font-size:18px; color:#222; }
.sg_bot_username { font-size:13px; color:#666; display:block; margin-top:3px; }
.sg_card_body { padding:14px; flex:1; }
.sg_card_body p { margin:0 0 10px 0; color:#444; font-size:14px; }
.sg_card_footer {
  padding:12px 14px;
  border-top:1px solid #eee;
  background:#fff;
}
.sg_t_link_label{
	color: #8993BA;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.sg_t_link_input input{
	font-size: 0.8rem !important;
    padding: 5px !important;
    line-height: 1;
    height: auto !important;
    margin-bottom: 10px !important;
}

.sg_t_link_btn a{
	width: 100%;
    padding: 5px !important;
    line-height: 1;
    font-size: 0.8rem !important;
}

.sg_share_title{
	color: #8993BA;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.sg_share_link a{
	width: 100%;
    padding: 5px !important;
    line-height: 1;
    font-size: 0.8rem !important;
    margin-bottom: 10px;
}
/* greed layout */

/* list layout */
.sg_list_v2 {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 20px 0;
}

.sg_list_item_v2 {
  background: #f7f8fa;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.sg_list_item_v2:hover { transform: translateY(-6px); box-shadow: 0 10px 26px rgba(0,0,0,0.12); }

.sg_list_row_v2 {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px;
}

.sg_list_left_v2 {
  display: flex;
  align-items: start;
  justify-content: center;
}

.sg_list_img_v2 {
  width: 100%;
  max-width: 120px;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #e9e9e9;
  background: #fff;
  display: block;
}

.sg_list_right_v2 {
  min-width: 0;
}

.sg_list_header_v2 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.sg_list_title_v2 {
  margin: 0;
  font-size: 18px;
  color: #222;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sg_list_username_v2 {
  font-size: 13px;
  color: #666;
  display: inline-block;
}

.sg_list_body_v2 { margin-top: 6px; }
.sg_list_desc_v2, .sg_list_meta_v2 {
  margin: 0 0 8px 0;
  color: #444;
  font-size: 14px;
}

.sg_list_tlink_v2 {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.sglt_label_v2 {
  font-size: 0.8rem;
  font-weight: bold;
  color: #8993BA;
  margin-bottom: 10px;
}

.sglt_field_v2 {
  flex: 1 1 320px;
  min-width: 160px;
}

.sglt_field_v2 input {
  width: 100%;
  padding: 6px 8px;
  font-size: 0.9rem;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
  margin-bottom: 0 !important;
}

.sglt_action_v2 .btn { white-space: nowrap; }

.sg_list_footer_v2 {
  padding: 12px 14px;
  border-top: 1px solid #eee;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sg_list_footer_title_v2 {
  color: #8993BA;
  font-size: 0.85rem;
  font-weight: bold;
}

.sg_list_share_row_v2 {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.sg_list_share_row_v2 .btn {
  padding: 6px 10px;
  font-size: 0.85rem;
  line-height: 1;
}

/* list layout */


.sg_store_footer {
  margin-top:28px;
  font-size:13px;
  color:#666;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  padding-top:14px;
  border-top:1px dashed #e6e6e6;
  padding-bottom: 14px;
}
.sg_powered_by { font-weight:600; color:#333; }
.sg_affiliate_link { font-size:13px; color:#0073aa; text-decoration:underline; }

/* dark mode */
.store_layout_dark .sg_store_title, .store_layout_dark .sg_info h3, .store_layout_dark .sg_bot_title, .store_layout_dark .sg_list_title_v2{
	color: #e8ecf2 !important;
}
.store_layout_dark .sg_tagline, .store_layout_dark .sg_bot_username, .store_layout_dark p, .store_layout_dark .sg_share_title, .store_layout_dark .sg_t_link_label, .store_layout_dark .sg_list_username_v2, .store_layout_dark .sglt_label_v2, .store_layout_dark .sg_list_footer_title_v2{
	color: #a3a8b3 !important;
}
.store_layout_dark.sg_store_header{
	background: #1b1c20;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}
.store_layout_dark .sg_store_avatar{
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.8);
}
.store_layout_dark .sg_meta_item{
	color: #c9ccd4;
	background: #26272d;
	border: 1px solid #3a3b41;
}
.store_layout_dark .sg_card, .store_layout_dark .sg_list_item_v2{
	background: #26272d;
}
.store_layout_dark .sg_card_header{
	border-bottom: 1px solid #3a3b41;
}
.store_layout_dark .sg_card_footer, .store_layout_dark .sg_list_footer_v2{
	border-top: 1px solid #3a3b41;
    background: #1b1c20;
}
/* dark mode */

/* store page css */

.cb-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin: 8px 0 24px;
  align-items: start;
}

.cb-item input[type="checkbox"]{
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.cb-item{
  display: block;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  padding: 0;
}

.cb-card{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border-radius: 10px;
  border:1px solid #e5e7eb;
  background:#fff;
  transition: border-color .15s ease, box-shadow .15s ease, transform .06s ease;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
}

.cb-img{
  width:48px;
  height:48px;
  flex:0 0 48px;
  border-radius:8px;
  object-fit:cover;
  display:block;
  background:#f3f4f6;
}

.cb-text{ flex:1; min-width:0; }
.cb-title{
  font-weight:600;
  font-size:15px;
  color:#111827;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.cb-check{
  flex:0 0 28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transform:scale(.8);
  transition:opacity .12s ease, transform .12s ease;
  color:#fff;
  background:linear-gradient(180deg,#10b981, #7bd19d);
  border-radius:6px;
  width:28px;
  height:28px;
  font-weight:700;
  font-size:14px;
  line-height:1;
}

.cb-item:hover .cb-card,
.cb-item input[type="checkbox"]:focus + .cb-card{
  border-color:#cbd5e1;
  box-shadow: 0 6px 18px rgba(2,6,23,0.06);
  transform: translateY(-2px);
}

.cb-item input[type="checkbox"]:checked + .cb-card{
  border-color: #10b981;
  box-shadow: 0 8px 30px rgba(16,185,129,0.08);
}
.cb-item input[type="checkbox"]:checked + .cb-card .cb-check{
  opacity:1;
  transform:scale(1);
}

.cb-item input[type="checkbox"]:focus + .cb-card{
  outline: 3px solid rgba(16,185,129,0.12);
  outline-offset: 2px;
}

.cb-note{ color:#6b7280; font-size:12px; margin-top:6px; }

.copy_url_container{
	display: flex;
    width: 100%;
    gap: 10px;
}

.copy_url_container input{
	width: 85% !important;
    margin-bottom: 0 !important;
}

.copy_url_container button{
	width: 15%;
}

.ms_s_head{
	padding-bottom: 6px;
    border-bottom: 1px solid #e2e8f0;
}

/* my store css */

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
}

.agency_history_table {
    border-collapse: collapse;
    width: 100%;
}

.agency_history_table, .agency_history_table th, .agency_history_table td {
    border: 1px solid #000;
}

.agency_history_table th, .agency_history_table td {
    padding: 8px;
}

.mb_card_footer .btn{
	font-size: 14px !important;
	padding: 7px 10px 7px 10px !important;
}

/* Integrations page css */
select.blank_field, input.blank_field {
    border: 2px solid tomato !important;
}

a[href="#1759733742812-2f77475d-86c3"] span{visibility:hidden;font-size:1px;}
a[href="#1763468927347-1ef7a033-2764"] span{visibility:hidden;font-size:1px;}
a[href="#1763526546572-cb513652-d557"] span{visibility:hidden;font-size:1px;}
a[href="#1763798541354-71d19e5e-5fde"] span{visibility:hidden;font-size:1px;}
a[href="#1763958702539-0ba689ee-fbc0"] span{visibility:hidden;font-size:1px;}
a[href="#1763958725436-ae8bc2e1-bcdb"] span{visibility:hidden;font-size:1px;}
a[href="#1763958749189-5e8b2b01-e0ed"] span{visibility:hidden;font-size:1px;}
a[href="#1763958762406-17d90d6f-b6c9"] span{visibility:hidden;font-size:1px;}
a[href="#1763958779396-eeb3145a-57f5"] span{visibility:hidden;font-size:1px;}
a[href="#1763958798858-e60d5cf4-c910"] span{visibility:hidden;font-size:1px;}
a[href="#1763958825490-3ad028e7-17cd"] span{visibility:hidden;font-size:1px;}
a[href="#1763958916602-3d4734d6-cd7e"] span{visibility:hidden;font-size:1px;}
a[href="#1763958955474-1e7e9867-0750"] span{visibility:hidden;font-size:1px;}

a[href="#1759733742812-2f77475d-86c3"] {background-image: url("https://app.trafficgrambot.com/wp-content/uploads/2025/11/mailermatic.png") !important;background-size: contain;background-position: center;background-repeat: no-repeat !important;width:250px;}
a[href="#1763468927347-1ef7a033-2764"] {background-image: url("https://app.trafficgrambot.com/wp-content/uploads/2025/11/aweber.png") !important;background-size: contain;background-position: center;background-repeat: no-repeat !important;width:250px;}
a[href="#1763526546572-cb513652-d557"] {background-image: url("https://app.trafficgrambot.com/wp-content/uploads/2025/11/getresponse.png") !important;background-size: contain;background-position: center;background-repeat: no-repeat !important;width:250px;}
a[href="#1763798541354-71d19e5e-5fde"] {background-image: url("https://app.trafficgrambot.com/wp-content/uploads/2025/11/mailchimp.png") !important;background-size: contain;background-position: center;background-repeat: no-repeat !important;width:250px;}
a[href="#1763958702539-0ba689ee-fbc0"] {background-image: url("https://app.trafficgrambot.com/wp-content/uploads/2025/11/sendlane.png") !important;background-size: contain;background-position: center;background-repeat: no-repeat !important;width:250px;}
a[href="#1763958725436-ae8bc2e1-bcdb"] {background-image: url("https://app.trafficgrambot.com/wp-content/uploads/2025/11/convertkit.png") !important;background-size: contain;background-position: center;background-repeat: no-repeat !important;width:250px;}
a[href="#1763958749189-5e8b2b01-e0ed"] {background-image: url("https://app.trafficgrambot.com/wp-content/uploads/2025/11/drip.png") !important;background-size: contain;background-position: center;background-repeat: no-repeat !important;width:250px;}
a[href="#1763958762406-17d90d6f-b6c9"] {background-image: url("https://app.trafficgrambot.com/wp-content/uploads/2025/11/mailerlite.png") !important;background-size: contain;background-position: center;background-repeat: no-repeat !important;width:250px;}
a[href="#1763958779396-eeb3145a-57f5"] {background-image: url("https://app.trafficgrambot.com/wp-content/uploads/2025/11/sendiio.png") !important;background-size: contain;background-position: center;background-repeat: no-repeat !important;width:250px;}
a[href="#1763958798858-e60d5cf4-c910"] {background-image: url("https://app.trafficgrambot.com/wp-content/uploads/2025/11/mailingboss.png") !important;background-size: contain;background-position: center;background-repeat: no-repeat !important;width:250px;}
a[href="#1763958825490-3ad028e7-17cd"] {background-image: url("https://app.trafficgrambot.com/wp-content/uploads/2025/11/textdeliver.png") !important;background-size: contain;background-position: center;background-repeat: no-repeat !important;width:250px;}
a[href="#1763958916602-3d4734d6-cd7e"] {background-image: url("https://app.trafficgrambot.com/wp-content/uploads/2025/11/mailvio.png") !important;background-size: contain;background-position: center;background-repeat: no-repeat !important;width:250px;}
a[href="#1763958955474-1e7e9867-0750"] {background-image: url("https://app.trafficgrambot.com/wp-content/uploads/2025/11/cleverlybox.png") !important;background-size: contain;background-position: center;background-repeat: no-repeat !important;width:250px;}
/* Integrations page css */

/* category_segment_code */
.mck_cs_users_table_wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.mck_cs_wrapper { display:block; }
.mck_cs_step_actions{margin-top: 10px;}
.mck_cs_category_list {margin-top: 10px;}
.mck_cs_cards_grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap:16px; }
.mck_cs_card { background:#fff; border-radius:8px; padding:12px; border:1px solid rgba(0,0,0,0.04); box-shadow: 0 6px 18px rgba(11,15,30,0.04); }
.mck_cs_card_head { display:flex; justify-content:space-between; align-items:center; gap:10px; margin-bottom:8px; }
.mck_cs_title { font-weight:700; font-size:15px; color:#0f172a; }
.mck_cs_actions .mck_cs_btn { border:0; background:transparent; color:#2563eb; padding:6px 8px; cursor:pointer; font-weight:600; }
.mck_cs_actions .mck_cs_btn_delete { color:#e02424; margin-left:6px; }
.mck_cs_desc { color:#334155; font-size:13px; margin-bottom:8px; min-height:36px; }
.mck_cs_meta { display:flex; flex-wrap:wrap; gap:8px; font-size:13px; color:#475569; }
.mck_cs_meta_item { background:#f1f5f9; padding:6px 8px; border-radius:6px; }
.mck_cs_modal { position:fixed; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(2,6,23,0.45); z-index:1500; }
.mck_cs_modal_dialog { width:960px; max-width:96%; background:#fff; border-radius:10px; overflow:hidden; box-shadow:0 30px 70px rgba(2,6,23,0.45); }
.mck_cs_modal_header { display:flex; justify-content:space-between; align-items:center; padding:14px 16px; border-bottom:1px solid rgba(2,6,23,0.04); }
.mck_cs_modal_header h2 { margin:0; font-size:16px; }
.mck_cs_modal_close { border:0; background:transparent; font-size:20px; cursor:pointer; color:#475569; }
.mck_cs_modal_body { padding:14px; display:block; }
.mck_cs_steps { margin-bottom:12px; }
.mck_cs_step_pills { display:flex; gap:8px; }
.mck_cs_step_pill { padding:8px 12px; border-radius:999px; background:#f8fafc; color:#475569; font-weight:600; font-size:13px; }
.mck_cs_step_pill.mck_cs_step_active { background:#2563eb; color:#fff; }
.mck_cs_form .mck_cs_field { margin-bottom:12px; }
.mck_cs_bots_list { display:flex; flex-direction:column; gap:8px; max-height:260px; overflow:auto; padding-right:6px; }
.mck_cs_bot_item { background:#fff; border:1px solid rgba(2,6,23,0.04); padding:8px; border-radius:8px; }
.mck_cs_users_panel { border:1px solid rgba(2,6,23,0.04); padding:8px; border-radius:8px; background:#fff; }
.mck_cs_users_toolbar { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; }
.mck_cs_users_table { width:100%; border-collapse:collapse; font-size:14px; }
.mck_cs_users_table th, .mck_cs_users_table td { padding:8px 10px; border-bottom:1px solid rgba(2,6,23,0.04); text-align:left; }
.mck_cs_pager { display:flex; gap:8px; justify-content:flex-end; margin-top:10px; }
.mck_cs_btn { padding:8px 12px; border-radius:8px; background:#f8fafc; border:1px solid rgba(2,6,23,0.04); cursor:pointer; color:#0f172a; font-weight:600; }
.mck_cs_btn:hover { filter:brightness(.98); }
.mck_cs_active_page { background:#2563eb; color:#fff; border-color:transparent; }
.mck_cs_muted { color:#64748b; font-size:13px; }
.mck_cs_small { font-size:13px; color:#64748b; margin-left:8px; }
.mck_cs_switch_label { display:flex !important; align-items:center; gap:10px; }
.mck_cs_switch { width:44px; height:24px; border-radius:999px; background:#e6eefc; display:inline-block; position:relative; }
.mck_cs_switch::after { content:''; position:absolute; width:18px; height:18px; background:#fff; border-radius:50%; left:4px; top:3px; transition:left .18s; box-shadow:0 6px 14px rgba(2,6,23,0.08); }
.mck_cs_switch_label input[type="checkbox"]:checked + .mck_cs_switch { background:#10b981; }
.mck_cs_switch_label input[type="checkbox"]:checked + .mck_cs_switch::after { left:22px; }
/* category_segment_code */

#main-footer{
	z-index: 1 !important;
}

@media only screen and (max-width:768px){
	.mb_grid {
        grid-template-columns: 1fr;
        margin: 10px;
        gap: 15px;
    }
	.mb_card_footer{
		display: block;
	}
	.mb_card_footer .btn-default{
		margin-bottom: 10px !important;
	}
	.wizard-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 10px;
  }

  .wizard-step {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
  }
  
  .mck_cs_switch {
	  width: 110px;
  }

  /* remove connecting line on small screens */
  .wizard-step::after {
    display: none !important;
  }

  .step-number {
    margin-bottom: 0;
    margin-right: 10px;
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .step-label {
    font-size: 0.9rem;
    text-align: left;
  }
  .wizard-footer .btn-default{
	  margin-bottom: 10px !important;
  }
  .cm-card { padding:12px; gap:10px; }
  .cm-icon{ width:40px; height:40px; flex:0 0 40px; }
  .cm-title{ font-size:14px; }
  .cm-desc{ font-size:12px; }
  .s_bot-card { flex: 1 1 100%;}
  
  .ai-credit-wrap { padding: 12px; margin: 12px; }
	.ai-hero { flex-direction: column; gap:12px; padding:16px; }
    .ai-hero-left, .ai-hero-right { width:100%; }
    .ai-hero-right { display:block; margin-top:8px; text-align:center; }
    .ai-logs-list { gap:10px; }
    .ai-log-card {
        display:block;
        padding:12px;
        border-radius:10px;
    }
    .ai-log-badge { display:inline-block; margin-bottom:8px; width:auto; padding:8px 12px; }
    .ai-log-desc { margin-bottom:8px; }
    .ai-log-credits { text-align:left; margin:6px 0; font-size:18px; }
    .ai-log-bot, .ai-log-module { display:block; margin-top:6px; }
    .ai-logs-pagination { gap:6px; padding-bottom:8px; flex-wrap:wrap; }
    .ai-hero-illustration { max-width:100%; overflow:hidden; }
	
	/* my store css */
	.cb-checkbox-grid{ grid-template-columns: 1fr; }
	.copy_url_container{
		display: block;
	}
	
	.copy_url_container input{
		width: 100% !important;
		margin-bottom: 12px !important;
	}
	
	.copy_url_container button{
		width: 100%;
	}
	/* my store css */
	
	/* store page css */
	.sg_store_header { flex-direction:column; align-items:flex-start; }
	.sg_store_avatar { width:96px; height:96px; }
	.sg_grid { grid-template-columns: 1fr; }
	.sg_list_row_v2{
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.sg_list_left_v2{
		justify-content: left;
	}
	/* store page css */
	.ci_custom_radio {
		padding: 8px 14px;
		font-size: 14px;
	}
}


@media only screen and (min-width: 768px) and (max-width: 1024px){
	.s_bot-card {
        flex: 1 1 calc(50% - 16px);
    }
	.ai-hero { flex-direction: row; gap:16px; }
	.ai-log-card { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
	.ai-log-credits { text-align:left; margin-top:8px; }
	.ai-hero-right { width:140px; }
	
	/* store page css */
	 .sg_grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
	.sg_store_avatar { width:100px; height:100px; }
	.sg_bot_icon { width:56px; height:56px; }
	/* store page css */
	
	.mb_card_footer .btn {
        font-size: 11px !important;
        padding: 5px 8px 5px 8px !important;
    }
}