/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  padding-top: 80px;
}

/* Color Palette */
.bg-dark-green {
  background-color: #1A3C34 !important;
}

.bg-light-gray {
  background-color: #F5F7FA !important;
}

.text-dark-green {
  color: #1A3C34 !important;
}

.text-bright-green {
  color: #28a745 !important;
}

.text-bright-green-dark {
  color: #006400 !important;
}

.border-dark-green {
  border-color: #1A3C34 !important;
}

.bg-admin-pattern {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Ctext x='10' y='30' transform='rotate(-45 10 30)' font-family='Poppins, sans-serif' font-size='16' font-weight='400' fill='rgba(26, 60, 52, 0.1)'%3EAdmin Login%3C/text%3E%3Ctext x='10' y='90' transform='rotate(-45 10 90)' font-family='Poppins, sans-serif' font-size='16' font-weight='400' fill='rgba(26, 60, 52, 0.1)'%3EAdmin Login%3C/text%3E%3Ctext x='10' y='150' transform='rotate(-45 10 150)' font-family='Poppins, sans-serif' font-size='16' font-weight='400' fill='rgba(26, 60, 52, 0.1)'%3EAdmin Login%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 500px 500px;
}

.btn-bright-green {
  background-color: #28a745 !important;
  color: #fff !important;
  border: none;
  padding: 12px 32px;
  font-weight: 500;
  box-shadow: 0 0 10px rgba(0, 255, 127, 0.5);
  transition: all 0.3s ease;
}

.btn-bright-green:hover {
  background-color: #218838 !important;
  box-shadow: 0 0 20px rgba(0, 255, 127, 0.7);
}

.btn-outline-bright-green {
  border-color: #4CAF50;
  color: #4CAF50;
}

.btn-outline-bright-green:hover {
  background-color: #4CAF50;
  color: white;
}

.btn-dark-green {
  background-color: #1A3C34;
  color: #ffffff;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-dark-green:hover {
  background-color: #143129;
  color: #ffffff;
}

.text-danger {
  color: #dc3545 !important;
}

/* Alert Box for Errors and Caps Lock Warning */
#alert-container {
  position: relative;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.alert {
  font-size: 0.9rem;
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.3s ease-out;
  text-align: center;
  width: 100%;
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffeeba;
  color: #856404;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.alert h4,
.alert p {
  margin: 0 auto;
}

.alert .btn {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

#success-message, #error-message {
  margin: 0 auto 1rem auto;
  max-width: 100%;
  text-align: center;
}

.alert-success, .alert-danger, .alert-warning {
  margin-bottom: 1rem;
}

.caps-lock-alert {
  font-size: 0.8rem;
  padding: 0.5rem;
  border-radius: 4px;
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
  margin-top: 0.25rem;
  display: none;
  text-align: left;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.caps-lock-icon {
  color: #dc3545;
  font-weight: bold;
  margin-right: 0.5rem;
  font-size: 1rem;
}

/* Form Group Spacing */
.form-group {
  margin-bottom: 1rem;
}

/* Header */
header {
  padding: 1rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
  font-size: 1.5rem;
  color: #00FF7F !important;
}

.nav-link {
  color: #FFFFFF !important;
  font-weight: 500;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #00FF7F !important;
}

.nav-link.btn.btn-outline-light {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}

.nav-link.btn.btn-outline-light:hover {
  color: #00FF7F;
  border-color: #00FF7F;
  background-color: transparent;
  text-decoration: none;
}

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
  padding: 120px 0 120px 0;
  position: relative;
  margin-top: -80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(76, 175, 80, 1), rgba(0, 150, 136, 1));
  z-index: 0;
}

.hero h1, .hero p, .hero .btn, .hero .search-bar, .hero .row {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(0, 255, 127, 0.5);
}

.hero .lead {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

section.bg-white.text-center .lead strong {
  font-weight: 700;
}

.search-bar .form-control {
  border: 1px solid #00FF7F;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

.search-bar .form-control:focus {
  border-color: #00CC66;
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.5);
}

.form-control.border-dark-green:focus {
  border-color: #00CC66;
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.5);
}

/* Pricing Section */
.pricing-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.equal-height {
  display: flex;
  flex-wrap: wrap;
}

.pricing-card {
  border: 1px solid #dee2e6;
  border-radius: 10px;
  transition: transform 0.3s;
  background-color: white;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card.free-plan {
  border: 1px solid #28a745;
}

.pricing-card .badge {
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 12px;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-card.free-plan .badge {
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 14px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -20px;
  position: absolute;
  z-index: 2;
}

.pricing-card:not(.free-plan) .badge {
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 12px;
  top: 0;
  right: 0;
  margin-top: -18px;
  margin-right: -18px;
  position: absolute;
  z-index: 2;
}

.pricing-card .card-header {
  background-color: #1a3c34;
  color: white;
  border-radius: 10px 10px 0 0;
  padding: 20px;
  text-align: center;
}

.pricing-card .card-body {
  padding: 30px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a3c34;
}

.pricing-card .btn-pricing {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1.1rem;
  border-radius: 5px;
  margin-top: auto;
}

.pricing-card .btn-pricing:hover {
  background-color: #218838;
}

.feature-list {
  list-style: none;
  padding: 0;
  flex-grow: 1;
}

.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.feature-list i {
  color: #28a745;
  margin-right: 10px;
}

/* Card and Job Card */
.card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 1.5rem;
  padding: 1rem 1rem 3.5rem 1rem;
  position: relative;
  z-index: 1;
  min-height: 350px;
}

.job-card {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #00FF7F;
  border-radius: 10px;
}

/* Job Card and Dropdown Enhancements */
.dropdown {
  position: relative;
  z-index: 10;
  margin-top: 0.5rem;
}

.dropdown:hover,
.dropdown.show {
  z-index: 20;
}

.dropdown-menu {
  z-index: 1000;
  min-width: 200px;
  padding: 0.5rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  position: absolute;
}

.dropdown-menu p {
  margin: 0 0 0.25rem 0;
  padding: 0.25rem 0.5rem;
  width: 100%;
}

.dropdown-menu p:last-child {
  margin-bottom: 0;
}

.col-md-12 {
  margin-bottom: 1.5rem;
}

/* How It Works Section */
#how-it-works .col-md-4 {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#how-it-works .col-md-4:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.3);
}

#how-it-works .col-md-4:hover .fas {
  color: #134E13 !important;
}

/* FAQ Section */
.faq-question {
  color: #1A3C34 !important;
  font-weight: 700 !important;
  font-size: 1.25rem;
}

.accordion-button.faq-question {
  color: #1A3C34 !important;
  font-weight: 700 !important;
  font-size: 1.25rem;
}

.accordion-button.faq-question:not(.collapsed) {
  color: #1A3C34 !important;
  font-weight: 700 !important;
  font-size: 1.25rem;
}

.accordion-button.faq-question:hover {
  color: #134E13 !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.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'/%3e%3c/svg%3e") !important;
  transform: rotate(180deg) !important;
  filter: none !important;
}

.faq-answer {
  font-weight: normal;
  font-size: 1rem;
  color: #6C757D !important;
}

/* Table Styles */
.table-dark-green {
  background-color: #1A3C34 !important;
}

.table td {
  vertical-align: middle;
}

.table thead th {
  background-color: #f8f9fa;
  color: #1A3C34;
  font-weight: 500;
  border-bottom: 2px solid #dee2e6;
}

#users-table thead th {
  background-color: #2c3e50 !important;
  color: #ffffff !important;
  font-weight: 600;
  border-color: #34495e !important;
  padding: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#users-table thead th.sortable {
  cursor: pointer;
  position: relative;
  padding-right: 20px;
}

#users-table thead th.sortable .fa-sort,
#users-table thead th.sortable .fa-sort-up,
#users-table thead th.sortable .fa-sort-down {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff !important;
}

#users-table thead th.sortable:hover {
  background-color: #34495e !important;
}

#users-table tbody tr {
  background-color: #ffffff;
}

#users-table tbody tr:hover {
  background-color: #f5f5f5;
}

#users-table th,
#users-table td {
  border: 1px solid #dee2e6;
}

/* Sponsor Logos */
.sponsor-logo {
  max-height: 60px !important;
  max-width: 120px !important;
  opacity: 0.5;
  filter: grayscale(80%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.sponsor-logo:hover {
  opacity: 1;
  filter: none;
}

/* Footer */
footer {
  position: relative;
  bottom: 0;
  width: 100%;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Images */
.img-fluid {
  max-height: 150px;
  object-fit: cover;
}

/* Blurred Email */
.blurred-email {
  filter: blur(4px);
  display: inline-block;
  color: #1A3C34;
  pointer-events: none;
}

/* Admin Panel Styles */
.nav-tabs .nav-link {
  color: #ffffff !important;
  background-color: #343a40 !important;
}

.nav-tabs .nav-link.active {
  color: #000000 !important;
  background-color: #ffffff !important;
}

.nav-tabs .nav-link:hover {
  color: #28a745 !important;
}

.table-free tbody {
  background-color: #f8f9fa;
}

.table-express tbody {
  background-color: #e6f3ff;
}

.table-standard tbody {
  background-color: #fff8e1;
}

.table-pro tbody {
  background-color: #f3e8ff;
}

.category-header {
  padding: 0.5rem;
  border-radius: 0.25rem;
}

.category-free {
  background-color: #f8f9fa;
}

.category-express {
  background-color: #e6f3ff;
}

.category-standard {
  background-color: #fff8e1;
}

.category-pro {
  background-color: #f3e8ff;
}

.description-row {
  display: flex;
  background-color: #f1f1f1;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem 0.25rem 0 0;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #495057;
  padding: 0.5rem;
  font-weight: bold;
}

.description-row div {
  text-align: left;
  padding: 0.5rem 0.75rem;
}

.col-email {
  width: 30%;
}

.col-status {
  width: 15%;
}

.col-signup {
  width: 15%;
}

.col-expiry {
  width: 15%;
}

.col-actions {
  width: 25%;
}

.table-free th,
.table-free td,
.table-express th,
.table-express td,
.table-standard th,
.table-standard td,
.table-pro th,
.table-pro td {
  padding: 0.5rem 0.75rem;
}

.table-free th:nth-child(1),
.table-free td:nth-child(1),
.table-express th:nth-child(1),
.table-express td:nth-child(1),
.table-standard th:nth-child(1),
.table-standard td:nth-child(1),
.table-pro th:nth-child(1),
.table-pro td:nth-child(1) {
  width: 30%;
}

.table-free th:nth-child(2),
.table-free td:nth-child(2),
.table-express th:nth-child(2),
.table-express td:nth-child(2),
.table-standard th:nth-child(2),
.table-standard td:nth-child(2),
.table-pro th:nth-child(2),
.table-pro td:nth-child(2) {
  width: 15%;
}

.table-free th:nth-child(3),
.table-free td:nth-child(3),
.table-express th:nth-child(3),
.table-express td:nth-child(3),
.table-standard th:nth-child(3),
.table-standard td:nth-child(3),
.table-pro th:nth-child(3),
.table-pro td:nth-child(3) {
  width: 15%;
}

.table-free th:nth-child(4),
.table-free td:nth-child(4),
.table-express th:nth-child(4),
.table-express td:nth-child(4),
.table-standard th:nth-child(4),
.table-standard td:nth-child(4),
.table-pro th:nth-child(4),
.table-pro td:nth-child(4) {
  width: 15%;
}

.table-free th:nth-child(5),
.table-free td:nth-child(5),
.table-express th:nth-child(5),
.table-express td:nth-child(5),
.table-standard th:nth-child(5),
.table-standard td:nth-child(5),
.table-pro th:nth-child(5),
.table-pro td:nth-child(5) {
  width: 25%;
}

.table-free thead th,
.table-express thead th,
.table-standard thead th,
.table-pro thead th {
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  line-height: 1.2;
}

/* Additional Components */
.fa-heart {
  font-size: 1.2rem;
  z-index: 10;
  cursor: pointer;
}

.fas.fa-heart {
  color: #dc3545 !important;
}

.far.fa-heart {
  color: #6c757d;
}

.dropdown-toggle::after {
  display: none;
}

.btn-link {
  color: #007bff;
}

.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.defrost-gray {
  background-color: #F8F9FA;
}

.search-input {
  width: 100%;
  max-width: none !important;
}

#search-form .input-group {
  width: 100%;
}

#job-list .card {
  width: 100%;
}

/* Cookie Consent Fix */
.cc-window {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

/* Main Content Fix */
main#main-content {
  width: 100%;
  padding: 0;
}

/* Blue Button for Update */
.btn-blue {
  background-color: #0d6efd !important;
  color: #fff !important;
  border: none;
  padding: 6px 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-blue:hover {
  background-color: #0b5ed7 !important;
}

/* Orange Button for Show Logs */
.btn-orange {
  background-color: #fd7e14 !important;
  color: #fff !important;
  border: none;
  padding: 6px 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background-color: #e06c12 !important;
}

/* User Statistics Card */
.stats-card {
  background-color: #f8f9fa !important;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stats-card .stat-item {
  text-align: center;
  padding: 0.5rem;
}

.stats-card .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A3C34;
}

.stats-card .stat-label {
  font-size: 0.9rem;
  color: #6C757D;
}

/* Red Button for Delete */
.btn-red {
  background-color: #dc3545 !important;
  color: #fff !important;
  border: none;
  padding: 6px 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-red:hover {
  background-color: #c82333 !important;
}

/* Recent Activity Timeline */
.timeline {
  position: relative;
  padding: 1rem 0;
}

.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #dee2e6;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #28a745;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.timeline-content {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Total Activity Log Accordion */
.accordion .accordion-button {
  background-color: #f8f9fa !important;
  color: #1A3C34 !important;
  font-weight: 500;
}

.accordion .accordion-button:not(.collapsed) {
  background-color: #e9ecef !important;
  color: #1A3C34 !important;
}

.accordion .accordion-body {
  background-color: #fff !important;
  padding: 1.5rem;
}

/* Sort Dropdown */
.sort-dropdown .dropdown-menu {
  min-width: 150px;
  padding: 0.5rem;
}

.sort-dropdown .dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.sort-dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #1A3C34;
}

/* Audit Logs Accordion */
.audit-logs-accordion .accordion-button {
  background-color: #f8f9fa !important;
  color: #1A3C34 !important;
  font-weight: 500;
}

.audit-logs-accordion .accordion-button:not(.collapsed) {
  background-color: #e9ecef !important;
  color: #1A3C34 !important;
}

.audit-logs-accordion .accordion-body {
  background-color: #fff !important;
  padding: 1.5rem;
}

/* Total Activity Log Day Groups */
.total-activity-accordion .accordion-button {
  background-color: #f8f9fa !important;
  color: #1A3C34 !important;
  font-weight: 500;
  font-size: 1rem;
}

.total-activity-accordion .accordion-button:not(.collapsed) {
  background-color: #e9ecef !important;
  color: #1A3C34 !important;
}

.total-activity-accordion .accordion-body {
  background-color: #fff !important;
  padding: 1rem;
}

/* Pagination Button */
.pagination-btn {
  background-color: #0d6efd !important;
  color: #fff !important;
  border: none;
  padding: 6px 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination-btn:hover {
  background-color: #0b5ed7 !important;
}

.pagination-btn:disabled {
  background-color: #6c757d !important;
  cursor: not-allowed;
}

/* Date Range Picker */
.date-range-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.date-range-item {
  flex: 1 1 100%;
  max-width: 100%;
}

.date-range-picker input[type="date"] {
  padding: 6px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 0.9rem;
  width: 100%;
}

.date-range-picker label {
  color: #1A3C34;
  font-weight: 500;
}

/* Recent Activity Action Styles */
.timeline-item.admin-access {
  background-color: #e7f1ff !important;
  border-left: 4px solid #0d6efd;
}

.timeline-item.payment-completed {
  background-color: #e6fffa !important;
  border-left: 4px solid #28a745;
}

.timeline-item.default-action {
  background-color: #f8f9fa !important;
  border-left: 4px solid #6c757d;
}

.timeline-icon.payment-completed {
  background-color: #28a745 !important;
}

/* Pagination Buttons */
.pagination-container {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.pagination-btn-prev {
  background-color: #6c757d !important;
  color: #fff !important;
  border: none;
  padding: 6px 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination-btn-prev:hover:not(:disabled) {
  background-color: #5c636a !important;
}

.pagination-btn-prev:disabled {
  background-color: #adb5bd !important;
  cursor: not-allowed;
}

/* Daily Download Button in Accordion */
.btn-daily-download {
  background-color: #0d6efd !important;
  color: #fff !important;
  border: none;
  padding: 6px 12px;
  font-size: 0.9rem;
  margin-left: 1rem;
}

.btn-daily-download:hover {
  background-color: #0b5ed7 !important;
}

/* Payment Form */
#card-element {
  border: 1px solid #dee2e6;
  padding: 10px;
  border-radius: 4px;
  background-color: #fff;
}

#card-errors {
  color: #dc3545;
  font-size: 0.9rem;
}

/* Scroll Offsets for Anchor Links */
#pricing::before {
  content: '';
  display: block;
  height: 150px; /* Navbar height (80px desktop, 60px mobile) + padding */
  margin-top: -90px;
  visibility: hidden;
  pointer-events: none;
}

#how-it-works::before {
  content: '';
  display: block;
  height: 150px; /* Navbar height (80px desktop, 60px mobile) + padding */
  margin-top: -90px;
  visibility: hidden;
  pointer-events: none;
}

#sponsors::before {
  content: '';
  display: block;
  height: 90px; /* Navbar height (80px desktop, 60px mobile) + padding */
  margin-top: -90px;
  visibility: hidden;
  pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .hero {
    padding: 80px 0 120px 0;
    margin-top: -80px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero .lead {
    font-size: 1rem;
  }
  section.bg-white.text-center .lead strong {
    font-weight: 700;
  }
  .bg-admin-pattern {
    background-size: 150px 150px;
  }
  .navbar-brand {
    font-size: 1.2rem;
  }
  .search-bar .form-control {
    width: 70% !important;
  }
  .navbar-nav {
    text-align: center;
  }
  .nav-link {
    margin: 0.5rem 0;
  }
  section {
    padding-top: 60px;
  }
  body {
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    padding-top: 60px !important;
  }
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .hero, .hero::before {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
  }
  .card {
    min-height: 300px; /* Reduced from 400px for testimonials */
    padding: 1rem 1rem 2rem 1rem; /* Reduced bottom padding */
    margin-bottom: 1.5rem; /* Reduced from 2rem */
  }
  .card p {
    font-size: 0.85rem !important; /* Slightly smaller text for better fit */
  }
  .col-md-12 {
    margin-bottom: 2rem;
  }
  .contact-info {
    background-color: #f8f9fa;
    padding: 0.5rem;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
    width: 100%;
  }
  .contact-info a {
    color: #007bff;
    text-decoration: none;
  }
  .contact-info a:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  .pricing-card.free-plan .badge {
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 12px;
    margin-top: -18px;
    line-height: 1.2;
  }
  .pricing-card:not(.free-plan) .badge {
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 12px;
    margin-top: -16px;
    margin-right: -16px;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
  }
  .table {
    display: block;
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .table thead {
    display: none;
  }
  .table tr {
    display: block;
    margin-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
  }
  .table td {
    display: block;
    text-align: left;
    padding: 0.5rem;
    position: relative;
  }
  .table td:before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 0.25rem;
  }
  .table td[data-label="Actions"] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .table td[data-label="Actions"] .btn {
    flex: 1 1 100%;
    margin-bottom: 0.5rem;
  }
  .modal-body .d-flex {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .modal-body .btn {
    flex: 1 1 100%;
    margin-bottom: 0.5rem;
  }
  .date-range-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .date-range-picker .btn {
    flex: 1 1 100%;
    margin-bottom: 0.5rem;
  }
  .timeline-item {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
  }
  .timeline-content {
    flex: 1 1 100%;
  }
  .nav-tabs {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .nav-tabs .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    width: 100%;
    text-align: center;
  }
  .table-free, .table-express, .table-standard, .table-pro {
    display: block;
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .table-free th, .table-free td,
  .table-express th, .table-express td,
  .table-standard th, .table-standard td,
  .table-pro th, .table-pro td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  .description-row {
    display: none;
  }
  .col-email, .col-status, .col-signup, .col-expiry, .col-actions {
    width: auto;
  }
  .table-free th:nth-child(1), .table-free td:nth-child(1),
  .table-express th:nth-child(1), .table-express td:nth-child(1),
  .table-standard th:nth-child(1), .table-standard td:nth-child(1),
  .table-pro th:nth-child(1), .table-pro td:nth-child(1),
  .table-free th:nth-child(2), .table-free td:nth-child(2),
  .table-express th:nth-child(2), .table-express td:nth-child(2),
  .table-standard th:nth-child(2), .table-standard td:nth-child(2),
  .table-pro th:nth-child(2), .table-pro td:nth-child(2),
  .table-free th:nth-child(3), .table-free td:nth-child(3),
  .table-express th:nth-child(3), .table-express td:nth-child(3),
  .table-standard th:nth-child(3), .table-standard td:nth-child(3),
  .table-pro th:nth-child(3), .table-pro td:nth-child(3),
  .table-free th:nth-child(4), .table-free td:nth-child(4),
  .table-express th:nth-child(4), .table-express td:nth-child(4),
  .table-standard th:nth-child(4), .table-standard td:nth-child(4),
  .table-pro th:nth-child(4), .table-pro td:nth-child(4),
  .table-free th:nth-child(5), .table-free td:nth-child(5),
  .table-express th:nth-child(5), .table-express td:nth-child(5),
  .table-standard th:nth-child(5), .table-standard td:nth-child(5),
  .table-pro th:nth-child(5), .table-pro td:nth-child(5) {
    width: auto;
  }
  .col-actions .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    margin: 0.25rem 0;
    width: 100%;
    display: block;
  }
  footer {
    padding-bottom: 100px;
  }
  footer .container {
    padding-bottom: 60px;
  }
  .bug-report-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    right: 5px !important;
    bottom: 10px !important;
  }
  .bug-report-label {
    font-size: 0.7rem;
    margin-right: 10px;
  }
  /* Sponsors Section - 3x2 Grid */
  #sponsors .row {
    display: flex;
    flex-wrap: wrap;
  }
  #sponsors .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #sponsors .sponsor-logo {
    max-height: 50px;
    max-width: 100px;
  }
  /* Reduce Section Padding */
  #sponsors {
    padding: 2rem 0;
  }
}

/* Navbar Toggler Styles */
header.bg-dark-green nav.navbar .navbar-toggler,
header.bg-dark nav.navbar .navbar-toggler {
  --bs-navbar-toggler-border-color: #00FF7F !important;
  border-color: #00FF7F !important;
  padding: 4px 8px;
  background-color: rgba(0, 255, 127, 0.1);
}

header.bg-dark-green nav.navbar .navbar-toggler-icon,
header.bg-dark nav.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 255, 127, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Enhance dropdown toggle button */
.contact-dropdown .toggle-contact {
  color: #007bff;
  font-size: 1rem;
  padding: 0.25rem 0;
  display: inline-flex;
  align-items: center;
}

/* Enhance dropdown for long content */
.contact-dropdown .dropdown-menu {
  min-width: 200px;
  width: auto;
  max-width: 90vw;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  padding: 0.75rem;
}

.contact-dropdown .dropdown-menu p {
  margin: 0 0 0.25rem 0;
  width: 100%;
  overflow-wrap: break-word;
  white-space: normal;
}

/* Slider Styles */
.ui-slider {
  height: 8px;
  background: #d3d3d3;
  border-radius: 4px;
  position: relative;
  margin: 0 10px;
}

.ui-slider .ui-slider-handle {
  width: 24px;
  height: 24px;
  background: #28a745;
  border: 2px solid #1A3C34;
  border-radius: 50%;
  top: -8px;
  margin-left: -12px;
  cursor: pointer;
  outline: none;
}

.ui-slider .ui-slider-range {
  background: #4CAF50;
  height: 8px;
  border-radius: 4px;
}

@media (max-width: 576px) {
  .ui-slider {
    height: 10px;
    margin: 0 15px;
  }
  .ui-slider .ui-slider-handle {
    width: 32px;
    height: 32px;
    top: -11px;
    margin-left: -16px;
    background: #28a745;
    border: 2px solid #1A3C34;
  }
  .ui-slider .ui-slider-range {
    height: 10px;
  }
}

/* Weekly Growth Section */
.weekly-infographic {
  padding: 40px;
}

.infographic-item {
  padding: 1rem;
  border-radius: 8px;
  background-color: #f8f9fa;
  transition: transform 0.3s ease, box-shadow: 0.3s;
}

.infographic-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 4px rgba(0,0,0,0.1);
}

.infographic-item i {
  margin-bottom: 0.5rem;
}

.infographic-item p {
  margin: 0;
  font-size: 1.1rem !important;
  color: #333;
}

.infographic-item p strong {
  color: #1A3C34;
}

@media (max-width:576px) {
  .weekly-infographic {
    padding: 0.5rem !important;
  }
  .infographic-item {
    padding: 0.75rem;
  }
  .infographic-item i {
    font-size: 2.5rem !important;
  }
  .infographic-item p {
    font-size: 1rem !important;
  }
}

/* Bug Report Modal */
.bug-report-label {
  display: inline-block;
  vertical-align: middle;
}

#bugReportModal .bug-report-modal {
  color: #1A3C34 !important;
}

#bugReportModal .form-label {
  color: #1A3C34 !important;
}
.modal-title {
  color: #000000 !important; /* Replace with your desired color, e.g., black */
}