@font-face {
  font-family: "VanillaExtract";
  src: url("/media/VanillaExtract.ttf");
}
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
a {
    text-decoration: none !important;
}
.navbar-brand {
    font-family: "VanillaExtract";
    font-size: 2em;
}
main {
    min-height: 100vh;
    padding: 2rem !important;
}
.feature-card { transition: transform 0.3s; }
.feature-card:hover { transform: translateY(-10px); }
.btn-get-started { background-color: #28a745; border: none; }
.btn-get-started:hover { background-color: #218838; }
.supportCentered {
    text-align: center;
  }
footer {
    background-color: transparent;
    padding: 1.5rem 0;
    border-top: 1px solid #dee2e6;
}
footer a {
    color: #0d6efd;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
.row {
    display: flex;
    flex-wrap: wrap;
}

.card {
    display: flex;
    flex-direction: column;
}

.card-body {
    flex: 1 1 auto;
    overflow: hidden;
}
.card-img-top {
  
}




/* Dark Theme Adjustments */
[data-bs-theme="dark"] {
  background-color: #212529 !important;
  color: #e9ecef !important;
}

/* Ensure Bootstrap components respect dark mode */
[data-bs-theme="dark"] .card,
[data-bs-theme="dark"] .dropdown-menu,
[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-check-input {
  background-color: #343a40 !important;
  color: #e9ecef !important;
  border-color: #495057 !important;
}

/* Ensure dropdown items have proper contrast */
[data-bs-theme="dark"] .dropdown-item {
  color: #e9ecef !important;
  background-color: #343a40 !important;
}

[data-bs-theme="dark"] .dropdown-item:hover,
[data-bs-theme="dark"] .dropdown-item:focus {
  background-color: #495057 !important;
  color: #ffffff !important;
}

/* Fix form switch in dark mode */
[data-bs-theme="dark"] .form-check-label {
  color: #e9ecef !important;
}

[data-bs-theme="dark"] .bg-light,
[data-bs-theme="dark"] .bg-white {
  background-color: #343a40 !important;
}