/* platform.css - Custom styles for platform.php */

/* General Body Styles */
body {
  font-family: 'Nunito', sans-serif;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease-in-out;
}

.navbar-brand {
  font-weight: bold;
}

/* Sticky Navbar Effect */
.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Accordion (Q&A) */
.accordion-button:not(.collapsed) {
    color: #000; /* Or your desired text color */
    background-color: #e7f1ff; /* Or your desired background color */
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .grid-cols-3 {
        grid-template-columns: 1fr; /* Stack items on smaller screens */
    }
}

/* Additional Styles for Consistency */
.rounded-xl {
    border-radius: 0.75rem;
}

.shadow-lg {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.shadow-md {
   box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}