/* === GENERAL === */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f2f3f6;
  color: #2b2b2b;
}

/* === NAVBAR === */
.glass-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-brand {
  font-family: 'Orbitron', sans-serif;
  color: #333;
}

.btn-outline-neon {
  color: #000;
  border: 1px solid #000;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-neon:hover {
  background-color: #000;
  color: #fff;
}


/* === DASHBOARD === */
h1, .section-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2rem;
  margin-top: 2rem;
  color: #000;
}

.card {
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
  background-color: #fff;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* === PLATFORM COLORS === */
.x-twitter-color { border-color: #1DA1F2 !important; color: #1DA1F2; }
.tiktok-color { border-color: #FE2C55 !important; color: #FE2C55; }
.linkedin-color { border-color: #0077B5 !important; color: #0077B5; }
.instagram-color { border-color: #E1306C !important; color: #E1306C; }
.facebook-color { border-color: #1877F2 !important; color: #1877F2; }
.reddit-color { border-color: #FF4500 !important; color: #FF4500; }

/* === TIKTOK BRANDING === */
.tiktok-brand {
  border-color: #FE2C55 !important;
  color: #FE2C55 !important;
}

.youtube-brand {
  border-color: #FF0000 !important;
  color: #FF0000 !important;
}



.youtube-color {
  color: #FF0000;
  border: 1px solid #FF0000;
  transition: 0.3s;
}

.youtube-color:hover {
  background-color: #FF0000;
  color: #fff;
}


.tiktok-btn {
  background-color: #FE2C55;
  color: #fff;
  border: none;
  transition: 0.3s ease;
}

.tiktok-btn:hover {
  background-color: #FE2C55;
  color: #000;
}

.btn-outline-tiktok {
  color: #FE2C55;
  border: 1px solid #FE2C55;
  background-color: transparent;
  transition: 0.3s ease;
}

.btn-outline-tiktok:hover {
  background-color: #FE2C55;
  color: #fff;
  border-color: #FE2C55;
}


/* === FOOTER === */
footer {
  background-color: #f1f1f1;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #e0e0e0;
}

/* Optional hover polish */
.card:hover {
  transform: translateY(-4px);
  transition: 0.25s ease-in-out;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Light gray background container */
.bg-light-gray {
  background-color: #f9f9fa;
}

.btn-outline-reddit {
    color: #FF4500;
    border-color: #FF4500;
}

.btn-outline-reddit:hover {
    background-color: #FF4500;
    color: white;
    border-color: #FF4500;
}

.border-youtube {
    border: 1px solid #FF0000 !important;
}

.border-x {
    border: 1px solid #000 !important;
}

.login-card {
  background-color: #f2f3f6; /* match body */
  border: none;
}

.login-inner {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

footer {
  max-width: 100%;
  box-shadow: none !important;
  margin-top: 40px;
}

.card.border {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.01);
}


.text-gradient-instagram {
  background: linear-gradient(45deg, #fd5949, #d6249f, #285AEB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.border-instagram {
  border: 1px solid #fd5949 !important;
}


/* Published Badge */
.published-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px; /* Adjust this to your desired height */
  background-color: #2e8b57; /* Darker forest green color for the "Published" badge */
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 12px;
  border-top-left-radius: 0.25rem; /* Optional: You can remove this to make it square */
  border-top-right-radius: 0.25rem; /* Optional: You can remove this to make it square */
}
