/* Sticky footer styles
-------------------------------------------------- */
:root[data-bs-theme="dark"] {
  color-scheme: dark;
}

:root[data-bs-theme="light"] {
  color-scheme: light;
}

html {
  position: relative;
  min-height: 100%;
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-bottom: 60px; /* Margin bottom by footer height */
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
}

.container {
  max-width: 1080px;
  text-align: center;
  margin-bottom: 100px;
  /*background-color: var(--bs-body-bg); */
}

.pricing-header {
  max-width: 700px;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px; /* Set the fixed height of the footer here */
  line-height: 60px; /* Vertically center the text there */
  background-color: var(--bs-body-bg);
  border-top: 1px solid var(--bs-border-color-translucent);
}

.content-left {
  float: left;
  margin-bottom: 40px;
}

.content-right {
  float: right;
  margin-bottom: 40px;
}

.jumbotron {
  margin-bottom: 2rem;
  margin-top: 2rem;
  border-radius: .3rem;
  padding:0.5rem;
  background-color: var(--bs-tertiary-bg);

}

/* ========================================
   Modern Button & Interactive Styles
   ======================================== */

/* Button hover effects */
.btn {
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
}

.btn-secondary:hover {
  background-color: #6c757d;
}

.btn-success:hover {
  background-color: #198754;
}

.btn-danger:hover {
  background-color: #dc3545;
}

.btn-warning:hover {
  background-color: #ffc107;
  color: #000;
}

/* ========================================
   Card & Container Styles
   ======================================== */

.card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-weight: 600;
  color: var(--bs-body-color);
  margin-bottom: 0.75rem;
}

.card-subtitle {
  color: var(--bs-secondary-color);
  font-size: 0.95rem;
}

/* ========================================
   Table Styles
   ======================================== */

.table {
  border-radius: 8px;
  overflow: hidden;
}

.table thead {
  background-color: var(--bs-tertiary-bg);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.table tbody tr {
  transition: background-color 0.15s ease-in-out;
}

.table tbody tr:hover {
  background-color: var(--bs-tertiary-bg);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.table td {
  vertical-align: middle;
  padding: 1rem;
}

.table-bordered {
  border: 1px solid var(--bs-border-color-translucent);
}

/* ========================================
   Form & Input Styles
   ======================================== */

.form-control,
.form-select {
  border: 1px solid var(--bs-border-color);
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  transform: scale(1.01);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--bs-body-color);
}

.form-group {
  margin-bottom: 1.25rem;
}

/* ========================================
   Link & Navigation Styles
   ======================================== */

a {
  transition: color 0.2s ease-in-out;
}

.nav-link {
  font-weight: 500;
  position: relative;
  padding-bottom: 0.5rem !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0d6efd;
  transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
  width: 100%;
}

/* ========================================
   Badge & Label Styles
   ======================================== */

.badge {
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.85rem;
}

/* ========================================
   Utility Classes
   ======================================== */

.transition-smooth {
  transition: all 0.3s ease-in-out;
}

.shadow-sm-hover:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

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

.fade-in {
  animation: fadeIn 0.2s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0.95;
  }
  to {
    opacity: 1;
  }
}

/* ========================================
   Dark Mode Styles
   ======================================== */

[data-bs-theme="dark"] .btn {
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}

[data-bs-theme="dark"] .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .btn-primary {
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  border: none;
}

[data-bs-theme="dark"] .btn-primary:hover {
  background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

[data-bs-theme="dark"] .btn-secondary:hover {
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .btn-success:hover {
  box-shadow: 0 4px 12px rgba(37, 183, 102, 0.3);
}

[data-bs-theme="dark"] .btn-danger:hover {
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

[data-bs-theme="dark"] .btn-warning:hover {
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

[data-bs-theme="dark"] .card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="dark"] .card:hover {
  border-color: rgba(13, 110, 253, 0.3);
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.15);
  transform: translateY(-4px);
}

[data-bs-theme="dark"] .table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.05);
}

[data-bs-theme="dark"] .form-control:focus,
[data-bs-theme="dark"] .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

[data-bs-theme="dark"] .nav-link::after {
  background-color: #0d6efd;
}