/* Add glow effect to active navbar item for consistency with headers */
.navbar-nav .nav-link.active {
  color: #8f94fb !important;
  text-shadow: 0 0 12px #8f94fb, 0 0 20px #8f94fb;
}
/* Dark mode for nav-tabs - Clean minimal style */
.nav-tabs {
  background: transparent;
  border-radius: 0;
  margin-bottom: 2rem;
}
.nav-tabs .nav-link {
  color: #8f94fb;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  margin: 0 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-link:focus {
  background: rgba(143, 148, 251, 0.1);
  color: #fff;
  border: 1px solid rgba(143, 148, 251, 0.3);
  box-shadow: 0 2px 8px rgba(143, 148, 251, 0.15);
}
.nav-tabs .nav-link:hover {
  background: rgba(143, 148, 251, 0.05);
  color: #fff;
  border: 1px solid rgba(143, 148, 251, 0.2);
}

/* Improved card spacing and layout */
.site-content {
  min-height: calc(100vh - 200px);
}

.tab-content {
  padding-top: 1rem;
}

/* Flip card container */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 100%;
  min-height: 400px;
  perspective: 1000px;
}

/* Flip icon styling */
.flip-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: rgba(23, 26, 33, 0.9);
  border: 2px solid rgba(143, 148, 251, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.flip-icon:hover {
  background: rgba(143, 148, 251, 0.2);
  border-color: #8f94fb;
  transform: scale(1.1) rotate(180deg);
  box-shadow: 0 4px 20px rgba(143, 148, 251, 0.4);
}

.flip-icon svg {
  transition: transform 0.3s ease;
}

.flip-icon:hover svg {
  fill: #fff;
}

/* Edit icon styling */
.edit-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

/* Edit icon in bottom-right position (replacing flip icon) */
.edit-icon-bottom {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  background: rgba(23, 26, 33, 0.9);
  border: 2px solid rgba(143, 148, 251, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.edit-icon:hover {
  transform: scale(1.15);
}

.edit-icon-bottom:hover {
  background: rgba(143, 148, 251, 0.2);
  border-color: #8f94fb;
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(143, 148, 251, 0.4);
}

.edit-icon:hover circle {
  fill: rgba(143, 148, 251, 0.4);
  stroke-width: 2.5;
}

.edit-icon:hover path {
  fill: #fff;
}

.edit-icon-bottom:hover svg {
  fill: #fff;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 1rem;
}

.flip-card-back {
  transform: rotateY(180deg);
}

/* Consistent card dimensions */
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

/* Back card specific styling */
.card-back {
  background: linear-gradient(135deg, #2a2d3a 0%, #1e1f26 100%);
  border: 1px solid rgba(143, 148, 251, 0.3);
}

.social-detail {
  background: rgba(143, 148, 251, 0.1);
  border: 1px solid rgba(143, 148, 251, 0.2);
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}

.social-count {
  color: #8f94fb;
  font-weight: bold;
}

/* Card pagination system */
.card-pages {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.card-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.card-page.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.card-pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.page-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(143, 148, 251, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-dot.active {
  background: #8f94fb;
  transform: scale(1.2);
}

.page-dot:hover {
  background: rgba(143, 148, 251, 0.6);
}

/* Ensure all card columns have consistent width */
.row .col-lg-4,
.row .col-md-6,
.row .col-12 {
  display: flex;
  align-items: stretch;
  margin-bottom: 1.5rem;
}

/* Fixed card image dimensions */
.card-img-top {
  height: 220px !important;
  object-fit: cover;
  width: 100%;
}

/* Status Label Styling */
.status-label {
  position: absolute;
  top: 12px;
  left: -8px;
  padding: 6px 16px 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform: rotate(-5deg);
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border-radius: 0 8px 8px 0;
}

.status-label.fully-forked {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.status-label.branching-out {
  background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.status-label::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  bottom: 0;
  width: 8px;
  background: inherit;
  border-radius: 4px 0 0 4px;
}

/* Consistent card body layout */
.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}

/* Ensure social icons area has consistent height */
.social-icons {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card title consistent height */
.card-title {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
}
/* Gradient button for forms (white text, purple gradient) */
.gradient-btn {
  background: linear-gradient(90deg, #8f94fb 0%, #4e54c8 100%);
  color: #fff !important;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(79, 84, 200, 0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  padding: 0.6rem 1.2rem;
  font-size: 1.1rem;
}
/* .gradient-btn:hover, .gradient-btn:focus {  Removed mouseover effect for feedback modal */
/*  background: linear-gradient(90deg, #4e54c8 0%, #8f94fb 100%); */
/*  color: #fff; */
/*  box-shadow: 0 4px 16px rgba(79, 84, 200, 0.18); */
/*  transform: translateY(-2px) scale(1.03); */
/* } */
/* FAQ Accordion Styling */
#faqAccordion .accordion-item {
  background-color: #23272a !important;
  border: 1px solid #444 !important;
  margin-bottom: 0;
}

#faqAccordion .accordion-button {
  background-color: #23272a !important;
  color: #8f94fb !important;
  border: none !important;
  border-bottom: 1px solid #444 !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  letter-spacing: 0.5px !important;
  padding: 1rem 1.5rem !important;
}

#faqAccordion .accordion-button:not(.collapsed) {
  background-color: #23272a !important;
  color: #8f94fb !important;
  box-shadow: none !important;
}

#faqAccordion .accordion-button:focus {
  border-color: #444 !important;
  box-shadow: none !important;
}

#faqAccordion .accordion-body {
  background-color: #23272a !important;
  color: #fff !important;
  border-top: 1px solid #444 !important;
  padding: 1.5rem !important;
  font-size: 1rem !important;
}

/* FAQ Accordion Chevron Color Customization */
.accordion-button::after {
  filter: none !important;
  background-image: none !important;
  content: '';
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  margin-left: auto;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s, filter 0.2s;
  mask-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
  background-color: #adb5bd; /* fallback */
}

.accordion-button.text-info::after {
  background-color: #8f94fb; /* matches text-info */
}
.accordion-button.text-light::after {
  background-color: #f1f3f4; /* matches text-light */
}
.accordion-button.collapsed::after {
  transform: rotate(-90deg);
  background-color: #f1f3f4; /* closed = text-light */
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
  background-color: #8f94fb; /* open = text-info */
}
/* FAQ Slide-in Panel */
.faq-slide-panel {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100vw;
  max-width: 600px;
  height: 100vh;
  background: #181a1b;
  box-shadow: -8px 0 32px rgba(0,0,0,0.7);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-left: 2px solid #23272a;
}
.faq-slide-panel.open {
  right: 0;
}
/* FAQ Slide Panel - right side */
.faq-slide-panel.faq-slide-right {
  position: fixed;
  top: 0;
  right: 0;
  width: 600px;
  max-width: 100vw;
  height: 100vh;
  background: #181a1b;
  box-shadow: -2px 0 16px rgba(0,0,0,0.4);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.faq-slide-panel.faq-slide-right.open {
  transform: translateX(0);
}
.faq-iframe {
  flex: 1 1 auto;
  width: 100%;
  border: none;
  background: transparent;
}
.close-faq-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  border-radius: 0 0 0 1.5rem;
  margin: 0;
  border: none;
  background: #23272a;
  color: #f1f3f4;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  position: absolute;
  top: 12px;
  left: -80px;
  padding: 0.5em 1.2em;
  transition: background 0.2s, color 0.2s;
}
.close-faq-btn:hover {
  background: #4e54c8;
  color: #fff;
}
/* Contact Slide Panel - right side (fixed, matches FAQ) */
.contact-slide-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 600px;
  max-width: 100vw;
  height: 100vh;
  background: #181a1b;
  box-shadow: -2px 0 16px rgba(0,0,0,0.4);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.contact-slide-panel.open {
  transform: translateX(0);
}
.contact-iframe {
  flex: 1 1 auto;
  width: 100%;
  border: none;
  background: transparent;
}
.close-contact-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  border-radius: 0 0 0 1.5rem;
  margin: 0;
  border: none;
  background: #23272a;
  color: #f1f3f4;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  padding: 0.5em 1.2em;
  transition: background 0.2s, color 0.2s;
}
.close-contact-btn:hover {
  background: #4e54c8;
  color: #fff;
}


html, body {
  height: 100%;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-content {
  flex: 1 0 auto;
}

.stylish-footer {
  background: #23272a;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  font-size: 0.97em;
  line-height: 1.3;
  min-height: unset;
  margin-top: 1.5rem;
}
.footer-link {
  color: #8f94fb;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  padding: 0.5em 1.2em;
  border-radius: 2em;
  background: linear-gradient(90deg, #232526 0%, #414345 100%);
  box-shadow: 0 2px 8px rgba(79, 84, 255, 0.12);
  margin: 0 0.2em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.footer-link:hover, .footer-link:focus {
  background: linear-gradient(90deg, #4e54c8 0%, #8f94fb 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(143, 148, 251, 0.25);
}
body {
  background-color: #181a1b;
  color: #f1f3f4;
}


h1, h3 {
  color: #f8fafb;
  margin-bottom: 2.2rem;
  margin-top: 1.5rem;
}

#videoGrid {
  margin-top: 1.5rem;
}

.card {
  background-color: #23272a;
  border: none;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}

.btn-primary {
  background: linear-gradient(90deg, #4e54c8 0%, #8f94fb 100%);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #232526 0%, #414345 100%);
}

::-webkit-scrollbar {
  width: 8px;
  background: #23272a;
}
::-webkit-scrollbar-thumb {
  background: #444950;
  border-radius: 4px;
}

/* Video grid: always 3 across on desktop */
#videoGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
#videoGrid .col-lg-4 {
  flex: 0 0 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
  margin-bottom: 1rem;
  display: flex;
}
#videoGrid .card {
  width: 100%;
}
@media (max-width: 991px) {
  #videoGrid .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }
  #videoGrid {
    gap: 1rem;
  }
}

body {
  background-color: #181a1b;
  color: #f1f3f4;
}

h1, h3 {
  color: #f8fafb;
}

.card {
  background-color: #23272a;
  border: none;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}

.btn-primary {
  background: linear-gradient(90deg, #4e54c8 0%, #8f94fb 100%);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #232526 0%, #414345 100%);
}

::-webkit-scrollbar {
  width: 8px;
  background: #23272a;
}
::-webkit-scrollbar-thumb {
  background: #444950;
  border-radius: 4px;
}
#shared-navbar {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: #181a1b;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* Navbar Logo Styling */
.navbar-logo {
  height: 40px;
  width: auto;
  transition: transform 0.2s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

@media (max-width: 576px) {
  .navbar-logo {
    height: 32px;
  }
  
  .navbar-brand {
    font-size: 1.4rem !important;
  }
}

/* Search Box Styling */
.search-container {
  max-width: 400px;
  width: 100%;
}

/* Filter Dropdown Styling */
.filter-container {
  min-width: 150px;
}

.filter-select {
  background: rgba(35, 39, 42, 0.8);
  border: 2px solid rgba(143, 148, 251, 0.3);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  color: #f1f3f4;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-select:focus {
  background: rgba(35, 39, 42, 0.95);
  border-color: #8f94fb;
  box-shadow: 0 0 0 0.2rem rgba(143, 148, 251, 0.25);
  color: #fff;
  outline: none;
}

.filter-select option {
  background: #23272a;
  color: #f1f3f4;
  padding: 0.5rem;
}

@media (max-width: 991px) {
  .filter-container {
    min-width: 120px;
  }
  
  .filter-select {
    font-size: 0.8rem;
    padding: 0.5rem 0.6rem;
  }
}

.search-input {
  background: rgba(35, 39, 42, 0.8);
  border: 2px solid rgba(143, 148, 251, 0.3);
  border-radius: 25px;
  padding: 0.6rem 1rem 0.6rem 2.8rem;
  color: #f1f3f4;
  transition: all 0.3s ease;
}

.search-input:focus {
  background: rgba(35, 39, 42, 0.95);
  border-color: #8f94fb;
  box-shadow: 0 0 0 0.2rem rgba(143, 148, 251, 0.25);
  color: #fff;
}

.search-input::placeholder {
  color: #adb5bd;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #23272a;
  border: 2px solid rgba(143, 148, 251, 0.3);
  border-top: none;
  border-radius: 0 0 15px 15px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.search-result-item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(143, 148, 251, 0.1);
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.search-result-item:hover {
  background: rgba(143, 148, 251, 0.1);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: #181a1b;
}

.search-result-info {
  flex: 1;
}

.search-result-name {
  color: #f1f3f4;
  font-weight: 600;
  margin: 0;
  font-size: 0.9rem;
}

.search-result-nickname {
  color: #8f94fb;
  font-size: 0.75rem;
  margin: 0;
  opacity: 0.8;
}

.search-no-results {
  padding: 1rem;
  text-align: center;
  color: #adb5bd;
  font-style: italic;
}

/* Compact Suggestion Modal Styling */
.suggestion-modal {
  background: #1a1e23;
  border: 1px solid #2d3748;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.suggestion-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-bottom: none;
  padding: 1.25rem 1.5rem;
}

.suggestion-header .modal-title {
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
}

.suggestion-icon {
  font-size: 1.5rem;
  opacity: 0.9;
}

.suggestion-body {
  padding: 1.5rem;
  background: #1a1e23;
}

.compact-form {
  max-width: none;
}

.compact-input {
  background: #2d3748 !important;
  border: 1px solid #4a5568 !important;
  color: #e2e8f0 !important;
  border-radius: 6px !important;
  padding: 0.6rem 0.8rem !important;
  font-size: 0.9rem !important;
  transition: all 0.2s ease !important;
  height: auto !important;
}

.compact-input:focus {
  background: #374151 !important;
  border-color: #667eea !important;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2) !important;
  color: #fff !important;
}

.compact-input::placeholder {
  color: #9ca3af !important;
  font-size: 0.85rem !important;
}

.form-select.compact-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23e2e8f0' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.75rem center !important;
  background-size: 16px 12px !important;
  padding-right: 2.5rem !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

.form-select.compact-input:invalid {
  box-shadow: none !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23e2e8f0' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e") !important;
}

.form-select.compact-input:focus:invalid {
  border-color: #667eea !important;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2) !important;
}

.form-select.compact-input option {
  background: #2d3748 !important;
  color: #e2e8f0 !important;
}

/* Social Links Compact Grid */
.social-compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.social-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-emoji {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.social-icon {
  width: 24px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-input {
  flex: 1;
  min-width: 0;
}

/* Form Labels */
.form-label {
  color: #e2e8f0 !important;
  font-weight: 500 !important;
  margin-bottom: 0.4rem !important;
  font-size: 0.9rem !important;
}

.form-label.fw-bold {
  font-weight: 600 !important;
}

/* Alerts */
.alert {
  border: none !important;
  border-radius: 6px !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
}

.alert-success {
  background: rgba(34, 197, 94, 0.15) !important;
  color: #22c55e !important;
  border: 1px solid rgba(34, 197, 94, 0.2) !important;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.15) !important;
  color: #ef4444 !important;
  border: 1px solid rgba(239, 68, 68, 0.2) !important;
}

/* Compact Footer */
.compact-footer {
  background: #1a1e23;
  border-top: 1px solid #2d3748;
  padding: 1rem 1.5rem;
  gap: 0.75rem;
}

.compact-btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 500 !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 6px !important;
  transition: all 0.2s ease !important;
  font-size: 0.9rem !important;
}

.compact-btn-primary:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6b4190 100%) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.compact-btn-secondary {
  background: #374151 !important;
  border: 1px solid #4b5563 !important;
  color: #d1d5db !important;
  font-weight: 500 !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 6px !important;
  transition: all 0.2s ease !important;
  font-size: 0.9rem !important;
}

.compact-btn-secondary:hover {
  background: #4b5563 !important;
  border-color: #6b7280 !important;
  color: #f3f4f6 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .suggestion-body {
    padding: 1rem;
  }
  
  .compact-footer {
    padding: 0.75rem 1rem;
    flex-direction: column;
  }
  
  .compact-btn-primary,
  .compact-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .social-compact-grid {
    grid-template-columns: 1fr;
  }
}

.suggestion-footer {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 2rem;
  gap: 1rem;
}

.suggestion-btn-primary {
  background: linear-gradient(135deg, #8f94fb 0%, #6c7ae0 100%) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.suggestion-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(143, 148, 251, 0.4);
  background: linear-gradient(135deg, #a5a9ff 0%, #7c87e8 100%) !important;
}

.suggestion-btn-primary:active {
  transform: translateY(0);
}

.suggestion-btn-secondary {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #e9ecef !important;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.suggestion-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.suggestion-alert {
  border-radius: 8px !important;
  border: none !important;
  font-weight: 500;
  padding: 1rem 1.5rem;
}

.suggestion-alert.alert-success {
  background: rgba(46, 160, 67, 0.2) !important;
  color: #51cf66 !important;
  border: 1px solid rgba(46, 160, 67, 0.3) !important;
}

.suggestion-alert.alert-danger {
  background: rgba(250, 82, 82, 0.2) !important;
  color: #ff6b6b !important;
  border: 1px solid rgba(250, 82, 82, 0.3) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .suggestion-modal {
    margin: 1rem;
  }
  
  .suggestion-header {
    padding: 1rem 1.5rem;
  }
  
  .suggestion-body {
    padding: 1.5rem;
  }
  
  .suggestion-form .form-section {
    padding: 1rem;
  }
  
  .suggestion-footer {
    padding: 1rem 1.5rem;
    flex-direction: column;
  }
  
  .suggestion-btn-primary,
  .suggestion-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Animation for modal appearance */
.suggestion-modal {
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Login page styles */
.min-vh-100 {
  min-height: 100vh;
}

.login-card {
  background: rgba(40, 42, 54, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.login-form .form-control {
  background: rgba(25, 27, 38, 0.8);
  border: 1px solid rgba(143, 148, 251, 0.2);
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.login-form .form-control:focus {
  background: rgba(25, 27, 38, 0.9);
  border-color: #8f94fb;
  box-shadow: 0 0 0 0.2rem rgba(143, 148, 251, 0.25);
  color: #fff;
}

.login-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.login-form .form-check-input {
  background-color: rgba(25, 27, 38, 0.8);
  border: 1px solid rgba(143, 148, 251, 0.2);
}

.login-form .form-check-input:checked {
  background-color: #8f94fb;
  border-color: #8f94fb;
}

.login-form .form-check-input:focus {
  border-color: #8f94fb;
  box-shadow: 0 0 0 0.2rem rgba(143, 148, 251, 0.25);
}

.login-header {
  background: linear-gradient(135deg, rgba(143, 148, 251, 0.1), rgba(143, 148, 251, 0.05));
  border-radius: 1rem 1rem 0 0;
  padding: 2rem;
}

.login-body {
  padding: 2rem;
}

@media (max-width: 768px) {
  .login-body {
    padding: 1.5rem;
  }
  
  .login-header {
    padding: 1.5rem;
  }
}
