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

/* Prevent font flashing during load */
/* html {
  visibility: visible;
  opacity: 1;
}

html.fonts-loading h1, 
html.fonts-loading h2, 
html.fonts-loading h3, 
html.fonts-loading h4, 
html.fonts-loading h5, 
html.fonts-loading h6 {
  visibility: hidden;
}

html.fonts-loaded h1, 
html.fonts-loaded h2, 
html.fonts-loaded h3, 
html.fonts-loaded h4, 
html.fonts-loaded h5, 
html.fonts-loaded h6 {
  visibility: visible;
} */

@font-face {
  font-family: 'Kaio';
  src: url('/fonts/Kaio-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Kaio';
  src: url('/fonts/Kaio-Super.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Kaio';
  src: url('/fonts/Kaio-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Kaio';
  src: url('/fonts/Kaio-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Kaio';
  src: url('/fonts/Kaio-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Kaio';
  src: url('/fonts/Kaio-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: block;
}

/* Modern Color Palette */
:root {
  /* Primary Colors */
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-200: #bae6fd;
  --primary-300: #7dd3fc;
  --primary-400: #38bdf8;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --primary-800: #075985;
  --primary-900: #0c4a6e;

  /* Secondary Colors */
  --secondary-50: #f8fafc;
  --secondary-100: #f1f5f9;
  --secondary-200: #e2e8f0;
  --secondary-300: #cbd5e1;
  --secondary-400: #94a3b8;
  --secondary-500: #64748b;
  --secondary-600: #475569;
  --secondary-700: #334155;
  --secondary-800: #1e293b;
  --secondary-900: #0f172a;

  /* Accent Colors */
  --accent-blue: #3b82f6;
  --accent-green: #10b981;
  --accent-purple: #8b5cf6;
  --accent-orange: #f59e0b;
  --accent-red: #ef4444;

  /* Gradient Colors */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-warning: linear-gradient(135deg, #fa709a 0%, #fee140 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

@font-face {
 font-family: 'Poppins';
 src: URL('../fonts/Poppins-Regular.ttf') format('truetype'),
      URL('../fonts/Poppins-ExtraBold.ttf') format('truetype'),
      URL('../fonts/Poppins-Bold.ttf') format('truetype'),
      URL('../fonts/Poppins-Black.ttf') format('truetype'),
      URL('../fonts/Poppins-ExtraBold.ttf') format('truetype'),
      URL('../fonts/Poppins-Medium.ttf') format('truetype'),
      URL('../fonts/Poppins-SemiBold.ttf') format('truetype');
}

.bg-primary2 {
  background-color: var(--primary-600) !important;
}

body {
  /* font-family: 'Inter', 'Poppins', sans-serif !important; */
  /* font-family: 'Kaio', 'Inter', 'Poppins', sans-serif !important; */
  font-family: 'Poppins', 'Inter', sans-serif !important;
  color: #1a202c !important;
  min-height: 100vh;
  background: #f7fafc !important;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Kaio', 'Poppins', 'Inter', sans-serif !important;
}

/* Tab styles */
.nav-tabs {
  border-bottom: 2px solid var(--secondary-200) !important;
}

.nav-tabs .nav-link {
  border: none !important;
  color: var(--secondary-600) !important;
  font-weight: 500;
  padding: 1rem 1.5rem !important;
  border-radius: 0 !important;
  background: transparent !important;
  position: relative;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
  color: var(--primary-600) !important;
  background: rgba(14, 165, 233, 0.05) !important;
}

.nav-tabs .nav-link.active {
  color: var(--primary-600) !important;
  background: transparent !important;
  border-bottom: 3px solid var(--primary-600) !important;
  font-weight: 600;
}

.tab-content {
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.tab-pane {
  position: relative;
  width: 100%;
  min-height: 300px;
}

.tab-pane:not(.active) {
  display: none !important;
}

/* Badge styles for keywords */
.badge {
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
}

.suggestion-keyword:hover {
  background: var(--primary-100) !important;
  color: var(--primary-700) !important;
  border-color: var(--primary-400) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Input group styling */
.input-group .form-control {
  border-radius: var(--radius-md) 0 0 var(--radius-md) !important;
}

.input-group .btn {
  border-radius: 0 var(--radius-md) var(--radius-md) 0 !important;
}

/* Modern Settings Styles */
.settings-section {
  margin-bottom: 2rem;
}

.section-header {
  border-bottom: 1px solid var(--secondary-200);
  padding-bottom: 1rem;
}

.section-title {
  color: var(--secondary-800);
  font-weight: 600;
  margin: 0;
  font-size: 1.25rem;
}

.section-subtitle {
  margin: 0;
  font-size: 0.875rem;
}

.form-control-modern {
  border: 2px solid var(--secondary-200) !important;
  border-radius: var(--radius-md) !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.95rem !important;
  transition: all 0.3s ease !important;
  background: #ffffff !important;
}

.form-control-modern:focus {
  border-color: var(--primary-500) !important;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1) !important;
  background: #ffffff !important;
}

.form-label {
  font-weight: 500 !important;
  color: var(--secondary-700) !important;
  margin-bottom: 0.5rem !important;
}

.form-text {
  color: var(--secondary-500) !important;
  font-size: 0.8rem !important;
  margin-top: 0.25rem !important;
}

.setting-card {
  background: var(--secondary-50);
  border: 1px solid var(--secondary-200);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.setting-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--secondary-300);
}

/* Platform Checkboxes */
.platform-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.platform-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--secondary-50);
  border: 2px solid var(--secondary-200);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
}

.platform-item:hover {
  border-color: var(--primary-300);
  background: rgba(14, 165, 233, 0.05);
}

.platform-item input[type="checkbox"] {
  margin-right: 0.75rem;
  transform: scale(1.2);
}

.platform-item label {
  margin: 0;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
}

/* Radio Groups */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  background: var(--secondary-50);
  border: 2px solid var(--secondary-200);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
}

.radio-item:hover {
  border-color: var(--primary-300);
  background: rgba(14, 165, 233, 0.05);
}

.radio-item input[type="radio"] {
  margin-right: 1rem;
  margin-top: 0.125rem;
  transform: scale(1.2);
}

.radio-item label {
  margin: 0;
  cursor: pointer;
  flex: 1;
}

.radio-item input[type="radio"]:checked + label {
  color: var(--primary-700);
}

.radio-item input[type="radio"]:checked {
  accent-color: var(--primary-500);
}

/* Form Switch Styling */
.form-check-input:checked {
  background-color: var(--primary-500) !important;
  border-color: var(--primary-500) !important;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(14, 165, 233, 0.25) !important;
}

/* Color utilities */
.text-orange {
  color: #ff6b35 !important;
}

.text-purple {
  color: #8b5cf6 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .platform-checkboxes {
    gap: 0.75rem;
  }
  
  .platform-item,
  .radio-item {
    padding: 0.75rem;
  }
  
  .section-title {
    font-size: 1.1rem;
  }
  
  .form-control-modern {
    padding: 0.625rem 0.875rem !important;
  }
}

td a {
  color: #09b165;
}

td a:hover {
  color: #0bd479;
}

a {
  color: var(--primary-500) !important;
  text-decoration: none !important;
}

a:hover {
  /*text-decoration: underline !important;*/
  color: var(--primary-400) !important;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 18px;
  line-height: 1.8rem;
}

li {
  font-size: 17px;
  line-height: 1.8rem;
}

/*.container {*/
/*    padding-top: 5rem;*/
/*    width: 800px;*/
/*    margin: 0 auto;*/
/*}*/

/*.card {*/
/*    border-radius: 6px;*/
/*    background: #fff;*/
/*    padding: 1rem;*/
/*    box-shadow: 2px 3px 10px rgba(0, 0, 0, .2);*/
/*}*/

/*.btn {*/
/*    color: #42b983;*/
/*    position: relative;*/
/*    border-radius: 99px;*/
/*    border: 1px solid #42b983;*/
/*    text-decoration: none;*/
/*    text-transform: uppercase;*/
/*    padding: 0.5rem 1.5rem;*/
/*    font-weight: 700;*/
/*    outline: none;*/
/*    background: #fff;*/
/*    transition: all 0.22s;*/
/*    cursor: pointer;*/
/*    margin-right: 1rem;*/
/*}*/

/*.btn.primary {*/
/*    background: #42b983;*/
/*    color: #fff;*/
/*}*/

/*.btn:active {*/
/*    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.3);*/
/*}*/

/*.btn:hover {*/
/*    cursor: pointer;*/
/*    opacity: 0.8;*/
/*}*/

/*input[type='file'] {*/
/*  display: none;*/
/*}*/

.preview {
  display: flex;
  flex-wrap: wrap;
  padding: 0.5rem;
}

.preview-image {
  position: relative;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  overflow: hidden;
}

.preview-image.removing {
  transform: scale(0);
  transition: transform 0.3s;
}

.removing {
  transform: scale(0) !important;
  transition: transform 0.3s;
}

.preview-image img {
  width: 180px;
  height: auto;
}

.preview-image:hover .preview-remove {
  opacity: 1;
}

.preview-image:hover .preview-info {
  /*bottom: 30px;*/
}

.preview-remove {
  opacity: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 0;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.22s;
}

.preview-info {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  height: 24px;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  transition: bottom 0.22s;
}

.preview-info-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: -7px;
  background: #42b983;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.22s;
}

.single {
  width: 300px;
  height: auto;
  padding: 10px;
}

.list {
  padding: 0;
}

#progress-wrp {
  border: 1px solid #0099cc;
  padding: 1px;
  position: relative;
  height: 30px;
  border-radius: 3px;
  margin: 10px;
  text-align: left;
  background: #fff;
  box-shadow: inset 1px 3px 6px rgba(0, 0, 0, 0.12);
}

#progress-wrp .progress-bar {
  height: 100%;
  border-radius: 3px;
  background-color: #f39ac7;
  width: 0;
  box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.11);
}

#progress-wrp .status {
  top: 3px;
  left: 50%;
  position: absolute;
  display: inline-block;
  color: #000000;
}

.bi {
  vertical-align: -0.125em;
  pointer-events: none;
  fill: currentColor;
}

.dropdown-toggle {
  outline: 0;
}

.nav-flush .nav-link {
  border-radius: 0;
}

.nav-link {
  /*padding: 0.3rem !important;*/
}

.btn-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
  background-color: transparent;
  border: 0;
}
.btn-toggle:hover,
.btn-toggle:focus {
  color: rgba(0, 0, 0, 0.85);
  background-color: #d2f4ea;
}

.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform 0.35s ease;
  transform-origin: 0.5em 50%;
}

.btn-toggle[aria-expanded='true'] {
  color: rgba(0, 0, 0, 0.85);
}
.btn-toggle[aria-expanded='true']::before {
  transform: rotate(90deg);
}

.btn-toggle-nav a {
  display: inline-flex;
  padding: 0.1875rem 0.5rem;
  margin-top: 0.125rem;
  margin-left: 1.25rem;
  text-decoration: none;
}
.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  background-color: #d2f4ea;
}

.scrollarea {
  overflow-y: auto;
}

.fw-semibold {
  font-weight: 600;
}
.lh-tight {
  line-height: 1.25;
}

.form-switch.form-switch-md {
  margin-bottom: 1rem; /* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-md .form-check-input {
  height: 1.5rem;
  width: calc(2rem + 0.75rem);
  border-radius: 3rem;
}

.moderation-icon {
  position: absolute;
  top: 10px;
  right: -8px;
  background: gold;
  padding: 5px;
  transform: rotate(24deg);
  font-size: 12px;
}

#lightgallery a {
  text-decoration: none;
  display: inline-flex;
}

#lightgallery a > img {
  transform: scale3d(1, 1, 1);
  transition: 0.3s;
}

#lightgallery a:hover > img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: 0.3s;
}

/* Modern Sidebar Styling */
.sidebar-modern {
  background: #1e293b !important;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
}

.sidebar-modern .nav-link {
  color: #ffffff !important;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.25rem;
 /* padding: 0.5rem 1rem !important; */
  margin: 0.125rem 0.65rem;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  position: relative;
  letter-spacing: 0.4px;
}

.sidebar-modern .nav-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-modern .nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.15);
}

.sidebar-modern .nav-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #ffffff;
  border-radius: 0 2px 2px 0;
}

.bg-main {
  background-color: rgba(25, 25, 25, 1);
  color: #ffffff;
}

.first-block {
  padding: 50px 0;
}

.main-nav {
  text-transform: uppercase;
  font-size: 15px;
  /*font-weight: 500;*/
  padding-right: 10px;
}

.primary-icons {
  font-size: 50px;
  color: #EEE9DA;
}

.feature h2 {
  margin-top: 15px;
}

#caption-field {
  margin-top: 10px;
}

.preview-content {
  min-height: 240px;
}

.update-div {
  margin-top: 10px;
}

.hero {
  padding-top: 100px;
  padding-bottom: 100px;
}

.feature-img {
  /*-webkit-box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.6);*/
  /*-moz-box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.6);*/
  /*box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.6);*/
  /*border-radius: 1rem!important;*/
}

.featurette {
  padding-left: 100px;
  padding-right: 100px;
}

/* .lead {
  font-size: 1.5rem !important;
  font-weight: 400 !important;
} */

h2.featurette-heading {
  font-size: 2.4rem;
}

.btn.btn-primary.add-photo {
  color: #78866b;
  font-size: 20px;
  font-weight: 500;
  background-color: #ffffff;
  border: 0;
}

.btn.btn-primary.add-photo:hover {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  background-color: #78866b;
}

li.nav-item a {
  color: #afaeae;
  font-size: 18px;
  font-weight: 500;
}

/* li.nav-item a.nav-link {
  color: #EEE9DA !important;
} */

li.nav-item a:hover {
  /* font-size: 18px; */
  /* font-weight: 500; */
  /* color: #93BFCF !important; */
  /*background-color: #7ca9bb;*/
}

.feature-img {
  max-width: 440px;
}

/*label {*/
/*    display: block !important;*/
/*}*/

label:hover,
input[type='checkbox']:hover {
  cursor: pointer;
}

.row {
  margin-right: 0 !important;
}



.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--secondary-700) !important;
  /* color: #93BFCF !important; */
}

/* .nav-pills .nav-link.active .primary-icons,
li.nav-item a:hover .primary-icons,
.nav-pills .show > .nav-link .primary-icons {
  color: #93BFCF;
} */

/* .nav-pills .nav-link.active .primary-icons, li.nav-item a:hover .primary-icons, .nav-pills .show > .nav-link .primary-icons {
  color: #93BFCF;
} */



li.nav-item a .primary-icons.plus {
  color: #09b165;
}

li.nav-item a:hover .primary-icons.plus {
  color: #32ea97;
}

.text-white {
  color: #EEE9DA !important;
}

.keyword-block {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition-duration: 0.3s;
  box-shadow: 0 8px 24px rgb(149 157 165 / 20%);
  border-radius: 0.5rem;
  align-items: center;
  -moz-justify-content: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #23444c;
  border: 2px solid #c4c8cb;
  padding: 15px;
  width: 335px;
  min-height: 115px;
  height: 100%;
}

.keyword-block a {
  color: #23444c;
  text-decoration: none;
}

.view-block {
  display: block;
  position: relative;
  overflow: hidden;
  /*cursor: pointer;*/
  transition-duration: 0.3s;
  box-shadow: 0 8px 24px rgb(149 157 165 / 20%);
  border-radius: 0.5rem;
  align-items: center;
  -moz-justify-content: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #23444c;
  border: 1px solid #c4c8cb;
  padding: 15px;
  text-decoration: none;
  /*max-width: 68vw;*/
  /*min-height: 125px;*/
  /*height: 100%;*/
  margin: 15px 0;
}

[type='button'],
[type='reset'],
[type='submit'],
button {
  -webkit-appearance: button-bevel !important;
}

.keyword-block:hover {
  box-shadow: 0 18px 34px rgb(149 157 165 / 60%);
}

.keyword-block:hover > a {
  color: #7ca9bb;
}

/*.keyword-block a:hover {*/
/*    color: #7ca9bb;*/
/*}*/

.keyword-block .plashka {
  font-size: 16px;
  display: inline-flex;
  text-align: center;
  line-height: 12px;
  vertical-align: middle;
  font-weight: 600;
  /*padding: 10px;*/
}

.keyword-block .plashka:hover {
  color: #0a58ca;
}

.keyword-block .low {
  color: #7d4113;
}

.keyword-block .high {
  color: #959606;
}

.keyword-block .best {
  color: #327d13;
}

.keyword-block .icon {
  background: #7ca9bb;
}

.keyword-block .plashka span {
  font-size: 15px;
  margin-right: 5px;
}

.keyword-block .plashka:hover {
  /*background: #43636f;*/
}

/* Modern Button Styles */
.btn {
  font-weight: 500 !important;
  border-radius: var(--radius-md) !important;
  /* padding: 0.75rem 1.5rem !important; */
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: none !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.025em;
}

.btn-primary {
  background: var(--primary-500) !important;
  color: #ffffff !important;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  filter: contrast(1.3) !important;
  box-shadow: var(--shadow-lg) !important;
  color: #ffffff !important;
}

.btn-success {
  background: var(--gradient-success) !important;
  color: #ffffff !important;
  box-shadow: var(--shadow-md);
}

.btn-success:hover {
  transform: translateY(-1px) !important;
  box-shadow: var(--shadow-lg) !important;
  color: #ffffff !important;
}

.btn-warning {
  background: var(--gradient-warning) !important;
  color: #ffffff !important;
  box-shadow: var(--shadow-md);
}

.btn-warning:hover {
  transform: translateY(-1px) !important;
  box-shadow: var(--shadow-lg) !important;
  color: #ffffff !important;
}

.btn-outline-primary {
  border: 2px solid var(--primary-500) !important;
  color: var(--primary-500) !important;
  background: transparent !important;
}

.btn-outline-primary:hover {
  background: var(--primary-500) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: var(--shadow-lg) !important;
}

.container {
  /*max-width: 100% !important;*/
}

.progress-bar {
  background-color: var(--primary-300) !important;
}

.card-body {
  height: 100%;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

footer a {
  color: rgb(61 71 83) !important;
  text-decoration: none;
}

footer ul li a:hover {
  text-decoration: underline;
}

.lead {
  color: rgba(148, 163, 184, 1);
}

/* Modern Stats Cards */
.stats-card {
  background: #ffffff;
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.stats-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.stats-card.blue::before {
  background: var(--gradient-primary);
}

.stats-card.green::before {
  background: var(--gradient-success);
}

.stats-card.orange::before {
  background: var(--gradient-warning);
}

.stats-card.purple::before {
  background: var(--gradient-secondary);
}

.stats-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.stats-card-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-blue);
}

.stats-card-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
}

.stats-card-icon.orange {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-orange);
}

.stats-card-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: var(--accent-purple);
}

.stats-card-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.stats-card-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--secondary-900);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats-card-change {
  font-size: 0.875rem;
  font-weight: 500;
}

.stats-card-change.positive {
  color: var(--accent-green);
}

.stats-card-change.negative {
  color: var(--accent-red);
}

.card {
  color: #000000;
  background-color: #ffffff !important;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.card-header h4 {
  font-weight: bold !important;
  font-size: 2rem !important;
}

.action-remove-this-filter {
  display: none;
  opacity: 0.25;
  position: absolute;
  z-index: 1;
  top: 9px;
  right: 5px;
  padding: 0.25em;
  padding-left: 3px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-right: 3px;
  line-height: 1;
  text-align: center;
  border-radius: 100%;
  color: #fff;
  width: 20px;
  height: 20px;
}

.btn-check:checked + .btn-primary .action-remove-this-filter {
  display: block;
}

.btn-check:checked + .btn-primary {
  background-color: #ffffff !important;
  color: #000000 !important;
  cursor: zoom-out;
  border: 2px solid #999999 !important;
}

.btn-check + .btn-primary {
  font-weight: bold;
  position: relative;
  background-color: #dfe1e3 !important;
  color: #636161 !important;
  /*opacity: .5 !important;*/
  cursor: cell;
  padding-right: 30px;
  border: 2px dashed #999999 !important;
}

.btn-primary:active:focus,
.btn-check:focus + .btn-primary,
.btn-primary:focus {
  box-shadow: none !important;
}

/* Modern Form Controls */
.form-control {
  max-width: 100%;
  border: 2px solid var(--secondary-200);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #ffffff;
}

.form-control:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: var(--secondary-400);
}

.form-label {
  font-weight: 500;
  color: var(--secondary-700);
  margin-bottom: 0.5rem;
}

.modal-content {
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.modal-header {
  border-bottom: 1px solid var(--secondary-200);
  padding: 1.5rem;
}

.modal-body {
  padding: 1.5rem;
}

.modal-title {
  font-weight: 600;
  color: var(--secondary-900);
}

/* Project Selector Dropdown Styles */
/* .dropdown-item.project-item:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
} */

.dropdown-item.project-item:active {
  background: rgba(255, 255, 255, 0.15) !important;
}

.dropdown-menu .dropdown-item:hover {
  /* background-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important; */
}

.dropdown-toggle::after {
  margin-left: auto !important;
}

#sidebar .dropdown-toggle::after {
  display: none;
}

/* User dropdown styling */
.user-dropdown {
  transition: all 0.3s ease !important;
}

.user-dropdown:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.user-dropdown .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  transform: translateX(4px);
}

/* Mentions page modern styling */
.mention-card {
  transition: all 0.2s ease;
}

/* .mention-card:hover .mention-header {
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-2px);
} */

.mention-content {
  font-family: inherit;
  word-wrap: break-word;
}

.platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

/* .reply-content {
  font-family: inherit;
  border-left: 3px solid var(--primary-200) !important;
} */

.reply-edit-section {
  border-left: 3px solid var(--warning-200) !important;
}

.reply-actions {
  border-left: 3px solid var(--secondary-200) !important;
}

.mention-status .badge {
  font-weight: 500;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
}

.mention-actions .btn {
  font-size: 0.8rem;
  font-weight: 500;
}

/* Settings page modern styling */
.settings-section {
  background: var(--secondary-50) !important;
  border: 1px solid var(--secondary-200) !important;
  border-radius: var(--radius-lg) !important;
  padding: 1.5rem !important;
}

.settings-section .section-title {
  font-weight: 600 !important;
  color: var(--text-800) !important;
  font-size: 1.125rem !important;
}

.settings-section .section-subtitle {
  margin-bottom: 0 !important;
  font-size: 0.875rem !important;
}

.settings-section .form-label {
  color: var(--text-700) !important;
  font-size: 0.875rem !important;
  margin-bottom: 0.5rem !important;
}

.settings-section .form-control {
  border: 1px solid var(--secondary-300) !important;
  border-radius: var(--radius-md) !important;
  padding: 0.75rem !important;
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
}

.settings-section .form-control:focus {
  border-color: var(--primary-400) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.settings-section .form-text {
  font-size: 0.75rem !important;
  color: var(--text-500) !important;
  margin-top: 0.25rem !important;
}

.settings-section textarea.form-control {
  resize: vertical !important;
}

.setting-card {
  background: #ffffff !important;
  border: 1px solid var(--secondary-200) !important;
  border-radius: var(--radius-md) !important;
  padding: 1rem !important;
}

.setting-card h6 {
  font-weight: 600 !important;
  color: var(--text-800) !important;
  font-size: 0.875rem !important;
}

.setting-card .text-muted {
  font-size: 0.75rem !important;
  color: var(--text-500) !important;
}

/* Modern nav tabs */
.nav-tabs .nav-link {
  border: 1px solid var(--secondary-200) !important;
  border-radius: var(--radius-md) !important;
  padding: 0.75rem 1rem !important;
  background: var(--secondary-50) !important;
  color: var(--text-600) !important;
  margin-right: 0.5rem !important;
  margin-bottom: 0 !important;
}

.nav-tabs .nav-link.active {
  background: var(--primary-50) !important;
  color: var(--primary-700) !important;
  border-color: var(--primary-200) !important;
}

.nav-tabs .nav-link:hover:not(.active) {
  background: var(--secondary-100) !important;
  border-color: var(--secondary-300) !important;
}

/* Billing page modern styling */
.pricing-card {
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl) !important;
}

.pricing-card .card-header {
  background: var(--secondary-50) !important;
  border-bottom: 1px solid var(--secondary-200) !important;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
  padding: 1.25rem !important;
  text-align: center !important;
}

.pricing-card .card-body {
  padding: 1.5rem !important;
}

.pricing-card .price {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--primary-600) !important;
}

.pricing-card .list-unstyled li {
  font-size: 0.875rem !important;
  margin-bottom: 0.5rem !important;
  display: flex !important;
  align-items: center !important;
}

.pricing-card .list-unstyled li i {
  color: var(--success-500) !important;
  font-size: 0.75rem !important;
  margin-right: 0.5rem !important;
}

.pricing-card.featured {
  border: 2px solid var(--primary-400) !important;
  box-shadow: var(--shadow-lg) !important;
  position: relative !important;
  transform: scale(1.02) !important;
}

.pricing-card.featured .card-header {
  background: var(--primary-50) !important;
  border-bottom: 1px solid var(--primary-200) !important;
}

.pricing-card.featured h4 {
  color: var(--primary-700) !important;
}

/* Modern nav pills for billing tabs */
.nav-pills#monthly-tab {
  background: var(--secondary-100) !important;
  border-radius: var(--radius-lg) !important;
  padding: 0.25rem !important;
}

.nav-pills#monthly-tab .nav-link {
  border-radius: var(--radius-md) !important;
  padding: 0.5rem 1.5rem !important;
  border: none !important;
  background: transparent !important;
  color: var(--text-600) !important;
  font-weight: 500 !important;
}

.nav-pills#monthly-tab .nav-link.active {
  background: #ffffff !important;
  color: var(--primary-600) !important;
  box-shadow: var(--shadow-sm) !important;
}

.form-check .form-check-input {
  float: none !important;
}

.form-check-input:checked {
  background-color: #6096B4 !important;
  border-color: #6096B4 !important;
}

.table tr td {
  padding: 1.5rem 0.5rem;
  border-bottom-width: 0;
}

.fixed-top-banner {
  position: fixed;
  top: 0;
  width: 100%;
  /* background: linear-gradient(90deg, rgb(228 112 162) 0%, rgb(86 153 233) 100%); */
  /* background: linear-gradient(90deg, #e3684c 0%, rgb(22, 17, 0) 100%); */
  background: #000000;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  font-size: 18px;
  z-index: 9999;
}

td a {
  text-decoration: none;
}

.mention-block {
  border-bottom: 1px solid;
  padding: 10px 0;
}

/*.mention-block tr:last-child td:first-child {*/
/*    border: 2px solid orange;*/
/*    border-bottom-left-radius: 10px;*/
/*}*/

/*.mention-block tr:last-child td:last-child {*/
/*    border: 2px solid green;*/
/*    border-bottom-right-radius: 10px;*/
/*}*/

/* header {
    margin-top: 45px;
} */

#show-all:hover {
  cursor: pointer;
}

.btn-lifetime {
  font-size: 20px !important;
  padding: 15px !important;
  background: linear-gradient(
    90deg,
    rgb(228 112 162) 0%,
    rgb(86 153 233) 100%
  ) !important;
  border: none !important;
}

.btn-lifetime:hover {
  background: linear-gradient(
    90deg,
    rgb(218 102 152) 0%,
    rgb(76 143 223) 100%
  ) !important;
}

.card-title a {
  color: #1c1b1b;
  text-decoration: none;
}

.card-title a:hover {
  text-decoration: underline;
}

.top-menu {
  align-items: center;
  margin-left: 120px;
}

@media only screen and (max-width: 768px) {
  .top-menu {
    margin-left: 0;
  }

  .input-group>.form-control {
    width: 100% !important;
  }
}

/* Modern Responsive Design */
@media only screen and (max-width: 768px) {
  /* Stats cards responsive */
  .stats-card {
    padding: 1.5rem;
  }
  
  .stats-card-value {
    font-size: 1.75rem;
  }
  
  .stats-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
  
  /* Sidebar improvements */
  .sidebar-modern .nav-link {
    padding: 0.4rem 0.8rem !important;
    margin: 0.1rem 0.4rem;
    font-size: 0.8rem;
  }
  
  /* Dashboard title */
  h1 {
    font-size: 2rem !important;
  }
  
  h2 {
    font-size: 1.5rem !important;
  }
}

@media only screen and (max-width: 720px) {
  header {
    margin-top: 70px;
  }

  .fixed-top-banner {
    /*position: relative;*/
  }

  table tr,
  table tr td {
    display: block;
  }
  table tr td {
    border: 0;
    text-align: center;
    padding: 0.5rem !important;
  }
  table tr {
    border-bottom: 1px solid #bebebe;
    padding-bottom: 20px;
  }
  table thead {
    display: none;
  }
  .single {
    width: 100%;
  }
  .preview-image {
    margin: 0 auto;
  }
  .feature-img {
    max-width: 100%;
  }
  .first-block {
    padding: 0;
  }
  .featurette {
    padding: 0;
  }
  /*#sidebar {*/
  /*    display: none;*/
  /*}*/
  .row {
    margin-right: calc(var(--bs-gutter-x) * 0) !important;
  }
  .view-block {
    width: 100%;
  }
  
  /* Mobile stats cards */
  .stats-card {
    padding: 1rem;
  }
  
  .stats-card-value {
    font-size: 1.5rem;
  }
}

.main-flexible-block {
  width: 100%;
}

@media (min-width: 992px) {
  .main-flexible-block {
    width: calc(100% - 290px) !important;
  }
}

/*@media (min-width: 1440px) {*/
/*    .col-xl-9 {*/
/*        width: 80% !important;*/
/*    }*/
/*}*/

td {
  vertical-align: middle;
  /*padding: 1rem !important;*/
}

.dropdown-menu {
  min-width: 15rem !important;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 20px auto;
  padding: 20px;
  background: rgb(28 29 29);
  border-radius: 5px;
  width: auto;
  max-width: 1024px;
  position: relative;
  transition: all 5s ease-in-out;
  border: 1px solid #626262;
  max-height: -webkit-fill-available;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: -5px;
  right: 10px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
}

.popup-light {
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 5px;
  width: fit-content;
  max-width: 100%;
  position: relative;
  transition: all 5s ease-in-out;
  border: 1px solid #626262;
  max-height: -webkit-fill-available;
}

.popup-light h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}

.popup-light .close {
  position: absolute;
  top: -5px;
  right: 10px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #000000;
}

.popup .close:hover,
.popup-light .close:hover {
  color: #06d85f;
}
.popup .content,
.popup-light .content {
  max-height: fit-content;
  overflow: hidden;
}

hr {
  margin: 0.5rem 0 !important;
}

.btn-outline-success:hover {
  cursor: pointer;
}

.sidebar-scroll {
  position: sticky;
  max-height: 100vh;
  overflow-x: hidden;
  height: 100%;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
  overflow-y: auto;
}
.sidebar-scroll::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

@media only screen and (max-width: 1024px) {
  .popup,
  .popup-light {
    overflow-y: auto;
    max-height: -webkit-fill-available;
  }
}

@media only screen and (max-width: 425px) {
  .input-group > .form-select {
    width: 100% !important;
    margin-bottom: 10px;
  }

  .input-group {
    display: block !important;
  }
}
/* .loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 80px;
  height: 80px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  margin: auto;
} */

.loader {
  width: 30px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #25b09b;
  --_m: 
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
          mask: var(--_m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.nav-link.disabled {
  color: #6c757d !important;
}

.dropdown-menu {
  background-color: #ffffff !important;
  /* color: #000000 !important; */
}

.dropdown-menu a {
  /* background-color: #212529 !important; */
  color: #000000 !important;
}

.dropdown-menu a:hover {
  color: #414040 !important;
}

.dropdown-item {
  width: auto !important;
  max-width: 100% !important;
}

.select-drop {
  background: #f7f0f0;
  padding: 5px 15px;
  /*height: 150px;*/
  /*max-width: 100%;*/
  color: #3d3f54 !important;
}

.select-drop a {
  color: #3d3f54 !important;
}

.input-group .dropdown-item {
  background-color: #e9ecef !important;
}

.input-group .dropdown-item.active {
  background-color: transparent !important;
}

.input-group .dropdown-item:hover {
  background-color: #3d3f54 !important;
}

.input-group .dropdown-header {
  color: #fcfeff !important;
}

.input-group .dropdown-menu {
  height: 300px !important;
  overflow-y: auto !important;
  scrollbar-color: #007 #bada55 !important;
}

.input-group .dropdown {
  min-width: 290px;
}
/*!* Handle *!*/
/*::-webkit-scrollbar-thumb {*/
/*  background: #888 !important;*/
/*}*/

/*!* Handle on hover *!*/
/*::-webkit-scrollbar-thumb:hover {*/
/*  background: #555 !important;*/
/*}*/

.nav-tabs {
  border-bottom: 0 !important;
}

.post-form .tab-content {
  max-width: fit-content;
  margin: auto;
}

.highlight {
  background: blueviolet;
  color: #ffffff;
  border-radius: 10px;
  padding: 5px;
  /*padding-bottom: 12px;*/
}

.keyword-input {
  display: block;
  margin-bottom: 5px;
}

.view-btn {
  padding: 5px 15px; border-radius: 10px; border-top-left-radius: 0px; border-top-right-radius: 0px; background: #93BFCF; border: 1px solid #BDCDD6; border-top: 0px; width: fit-content; height: fit-content;
}

.view-btn:hover {
  background: #6096B4;
}

.approve-btn {
  padding: 5px 15px; border-radius: 10px; border-top-left-radius: 0px; border-top-right-radius: 0px; background: #078e2b; border: 1px solid #078e2b; border-top: 0px; width: fit-content; height: fit-content;
}

.approve-btn:hover {
  background: #0ac23b;
}

.cancel-btn {
  padding: 5px 15px; border-radius: 10px; border-top-left-radius: 0px; border-top-right-radius: 0px; background: #e04b1e; border: 1px solid #e04b1e; border-top: 0px; width: fit-content; height: fit-content;
}

.cancel-btn:hover {
  background: rgb(241, 113, 74);
}

.a-block {
  color: #0D0A0A !important;
}

.a-block:hover {
  color: #7a7a7a !important;
}

.card-header {
  background: none !important;
  border-bottom: 0 !important;
}

.btn-primary-home {
  background: #14c08b !important;
  color: #f7f0f0 !important;
  border-color: #14c08b !important;
}

.btn-primary-home:hover {
  background: #16d49b !important;
  color: #f7f0f0 !important;
  border-color: #16d49b !important;
}