/* pricing.css - Custom styles for pricing.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);
}

/* Table Styles */
.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6; /* Consistent borders */
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05); /* Subtle striping */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .grid-cols-3 {
        grid-template-columns: 1fr; /* Stack pricing cards on smaller screens */
    }
    .table-responsive {
        overflow-x: auto; /* Horizontal scrolling for the table on small screens */
    }
}
/* 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);
}

/* 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);
}
.shadow-sm {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}