@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --primary-color: #F6773B;
  --secondary-color: #f7f7f7;
  --font: "Inter", sans-serif;
}

p,
a,
h1,
h2 {
  font-family: var(--font) !important;
}
.heading{
  color: var(--primary-color) !important;
}
.heading-xl{
  font-family: var(--font) !important;
  font-size: 28px !important;
  text-transform: capitalize !important;
  font-weight: 600 !important;
  letter-spacing: 1px;
  /* color: var(--primary-color) !important; */
}
.heading-l{
  font-size: 18px !important;
}
.heading-p{
  font-size: 15px !important;
}
/* Prompt histroy */
.table-light th {
  background: #f8f9fa !important;
  border-bottom: 2px solid #e9ecef !important;
}

/* Prompt histroy */
.card {
  border-radius: 14px !important;
  transition: box-shadow 0.2s ease-in-out;
}

.card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06) !important;
}

.content {
  min-height: 100vh;
  padding: calc(var(--phoenix-navbar-top-height) + 2rem) 1.5rem 6.375rem 1.5rem;
  position: relative;
  padding-bottom: var(--phoenix-footer-height);
  background-color: var(--phoenix-body-bg);
}

.footer {
  bottom: 0;
  width: 100%;
  height: var(--phoenix-footer-height);
  border-top: 1px solid var(--phoenix-navbar-footer-border-color);
  padding: 0 1.5rem;
  left: 0;
}

/* Nawin css */
.navbar-logo-img {
  width: 60px;
  padding-top: 10px;
  height: 40px;
  /* background: #000; */
  object-fit: cover;
}

.logo-text {
  color: var(--primary-color) !important;
  font-family: var(--font) !important;
  font-weight: 600 !important;
}

.navbar-vertical {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 260px;
  background: linear-gradient(145deg, #1b1c1f, #2a2b2e);
  color: #fff;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  z-index: 1000;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-vertical-content {
  padding: 1rem 1.15rem;
  flex: 1;
  overflow-y: auto;
}

/* Labels */
.navbar-vertical-label {
  color: #a0a0a0;
  font-size: 0.8rem;
  margin: 1rem 0 0.5rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.navbar-vertical-line {
  margin: 0.25rem 0 0.75rem;
  border-color: rgba(255, 255, 255, 0.1);
}

/* Nav Links */

.navbar-vertical .nav-link {
  padding: 1rem !important;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-family: var(--font) !important;
  font-size: 12px !important;
}

.navbar-vertical .nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary-color) !important;
  transform: translateX(4px);
}

.navbar-vertical .nav-link.active {
  background: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}

.navbar-vertical-collapsed .navbar-vertical.navbar-expand-lg .nav-item-wrapper:hover .nav-link-text-wrapper .nav-link-text {
  color: var(--primary-color) !important;
}

.navbar-vertical-collapsed .navbar-vertical.navbar-expand-lg .nav-item-wrapper:has(.active) .label-1 .nav-link-icon {
  color: var(--secondary-color) !important;
}

/* Footer Collapse Button */
.navbar-vertical-footer {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-vertical-toggle {
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  font-weight: 600;
}

.navbar-vertical-toggle:hover {
  color: var(--primary-color) !important;
  transform: scale(1.03);
}

.btn-primary {
  background-color: var(--primary-color) !important;
}
a:hover{
  color: var(--primary-color) !important;
  text-decoration: none !important;
}

a.active{
  color: var(--primary-color) !important;
}

.hover-bg:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.cursor-pointer {
  cursor: pointer;
}

/* Projects page main */
.project-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
}

.project-card.active::before {
  background: #22c55e;
}

.project-card.closed::before {
  background: #f59e0b;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.project-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff7a45, #ffb703);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-chip {
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 11px;
}

.timeline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.date-pill {
  background: #f8fafc;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
}

.date-pill span {
  display: block;
  color: #64748b;
  font-size: 10px;
}

.timeline-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, #e5e7eb, #c7d2fe);
}

.stats-row {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 12px;
  color: #64748b;
}
/* Projects page main ends */

/* Setting page */
.settings-nav {
  position: relative;
  transition: all 2s ease-in-out;
  border: none !important;
  border-radius: 0 !important;
}
.settings-nav.active{
  color: var(--primary-color) !important;
  border: none !important;
  border-bottom: 2px solid var(--primary-color) !important;
}
.settings-content {
  animation: fadeSlide 0.35s ease-in-out;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* GSC starts */
/* ===== GSC TABLE CARD ===== */
.gsc-table-card {
  background: var(--bs-body-bg);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}

/* Header */
.gsc-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

/* Table */
.gsc-table {
  margin-bottom: 0;
  font-size: 14px;
}

.gsc-table thead th {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #6b7280;
  border-bottom: 1px solid #e5e7eb;
}

.gsc-table tbody tr {
  transition: background 0.15s ease;
}

.gsc-table tbody tr:hover {
  background: rgba(99,102,241,0.04);
}

.gsc-table td {
  padding: 14px 12px;
  vertical-align: middle;
}

/* Empty / loading */
.py-6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* GSC ends */
/* Domain */

/* Domain ends */
.empty-animation {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  width: 72px;
}

.empty-icon {
  font-size: 2.2rem;
  color: #6366f1;
  animation: float 2.5s ease-in-out infinite;
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  height: 72px;
  width: 72px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.15);
  animation: pulse 2s ease-out infinite;
  z-index: 1;
}

/* Floating effect */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Pulse ripple */
@keyframes pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
/* Trendo=ing page ends */
/* Ppl ask */
.paa-empty-animation {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  width: 72px;
}

.paa-empty-icon {
  font-size: 2.2rem;
  color: #0d6efd;
  animation: paa-float 2.6s ease-in-out infinite;
  z-index: 2;
}

.paa-pulse-ring {
  position: absolute;
  height: 72px;
  width: 72px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.15);
  animation: paa-pulse 2s ease-out infinite;
  z-index: 1;
}

@keyframes paa-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes paa-pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
/* Ppl ask */
/* keyowrd-video */

.video-empty-animation {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  width: 72px;
}

.video-empty-icon {
  font-size: 2.2rem;
  color: #198754;
  animation: video-float 2.6s ease-in-out infinite;
  z-index: 2;
}

.video-pulse-ring {
  position: absolute;
  height: 72px;
  width: 72px;
  border-radius: 50%;
  background: rgba(25, 135, 84, 0.15);
  animation: video-pulse 2s ease-out infinite;
  z-index: 1;
}

@keyframes video-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes video-pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
/* ---------- Video Card ---------- */
.video-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

/* ---------- Thumbnail ---------- */
.video-thumb-wrapper {
  position: relative;
  overflow: hidden;
}

.video-thumb {
  object-fit: cover;
}

/* ---------- Play Overlay ---------- */
.video-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.video-thumb-wrapper:hover .video-play-overlay {
  opacity: 1;
}

/* keyowrd-video */
/* Related searched */
.rs-empty-animation {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  width: 72px;
}

.rs-empty-icon {
  font-size: 2.2rem;
  color: #0d6efd;
  animation: rs-float 2.6s ease-in-out infinite;
  z-index: 2;
}

.rs-pulse-ring {
  position: absolute;
  height: 72px;
  width: 72px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.15);
  animation: rs-pulse 2s ease-out infinite;
  z-index: 1;
}

@keyframes rs-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes rs-pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.rs-item {
  cursor: pointer;
}

/* Related searched ends */
/* backlink gap */
.backlink-glass {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.75),
    rgba(255,255,255,0.9)
  );
  backdrop-filter: blur(14px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.4);
}

.table-glass {
  background: rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 10px;
}

.gradient-badge {
  background: linear-gradient(90deg, #6366f1, #22c55e);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
}

.sortable {
  cursor: pointer;
  user-select: none;
}

.f-label {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 6px;
}

.f-input {
  border-radius: 12px;
  padding: 10px 14px;
}

/* backlink gap */
/* Google Analytics */
.step-container {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.step-container.fade {
  opacity: 0;
  transform: translateY(6px);
}

.step-container.show {
  opacity: 1;
  transform: translateY(0);
}
.ga-root {
  padding: 32px;
  background: #fff;
  border-radius: 14px;
}

/* Header */
.ga-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ga-header h3 {
  margin: 0;
  font-weight: 600;
}

.ga-header p {
  margin: 4px 0 0;
  color: #6b7280;
}

/* Badge */
.ga-badge {
  background: #16a34a;
  color: white;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  border-radius: 15px;
  height: 30px;
  font-size: 12px;
}

/* Transition */
.ga-step-wrapper {
  transition: opacity 160ms ease, transform 160ms ease;
}

.ga-step-wrapper.fade {
  opacity: 0;
  transform: translateY(4px);
}

.ga-step-wrapper.show {
  opacity: 1;
}
.ga-step-indicator {
  font-size: 13px;
  color: #9ca3af;
}

.ga-step-title {
  margin: 4px 0 16px;
  font-weight: 500;
}
.ga-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ga-item {
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.ga-item:hover {
  background: #f9fafb;
}

.ga-item.active {
  background: #f3f4f6;
}

.ga-check {
  color: #2563eb;
  font-weight: 600;
}

/* Footer */
.ga-footer {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
}

.ga-link {
  background: none;
  border: none;
  color: #2563eb;
  cursor: pointer;
}

.ga-primary {
  background: #111827;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
}

.ga-primary:disabled {
  opacity: 0.5;
}

.ga-success {
  text-align: center;
  padding: 48px 16px;
}

.ga-skeleton


/* Google Analytics ends */


