/* =====================
   DESKTOP PROGRAM OPTIONS
   ===================== */

/* Tab Styles */
.desktop-options .tab {
  overflow: hidden;
  border-bottom: 3px solid #001d4c;
  background-color: #fff;
  display: flex;
}

.desktop-options .tab button {
  background-color: #f1f1f1;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 20px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  flex: 1;
  border-right: 1px solid #ccc;
}

.desktop-options .tab button:last-child {
  border-right: none;
}

.desktop-options .tab button:hover {
  background-color: #ddd;
}

.desktop-options .tab button.active {
  background-color: #001d4c;
  color: white;
}

/* Tab Content */
.desktop-options .tabcontent {
  display: none;
  padding: 30px 0;
  background-color: #fff;
}

/* Pricing Table */
.desktop-options .pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.desktop-options .pricing-table th,
.desktop-options .pricing-table td {
  border: 2px solid #000;
  padding: 15px;
  text-align: center;
  vertical-align: middle;
}

/* Header Styles */
.desktop-options .pricing-table thead th {
  font-size: 18px;
  font-weight: bold;
  padding: 20px 15px;
}

.desktop-options .header-left {
  background-color: #001d4c;
  color: white;
  width: 25%;
}

.desktop-options .header-basic {
  background-color: #ffffff;
  color: #001d4c;
  width: 25%;
}

.desktop-options .header-essential {
  background-color: #001d4c;
  color: white;
  width: 25%;
}

.desktop-options .header-complete {
  background-color: #bc9963;
  color: #001d4c;
  width: 25%;
}

/* Cell Background Colors */
.desktop-options .basic-bg {
  background-color: #fff;
}

.desktop-options .essential-bg {
  background-color: #001d4c;
  color: white;
}

.desktop-options .complete-bg {
  background-color: #bc9963;
  color: #001d4c;
}

.desktop-options .gold-bg {
  background-color: #bc9963;
  color: #001d4c;
}

/* Cell Types */
.desktop-options .label-cell {
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  padding: 15px 20px;
}

.desktop-options .price-cell {
  font-size: 32px;
  font-weight: bold;
  padding: 20px;
}

.desktop-options .grant-cell {
  font-size: 18px;
  padding: 15px;
}

.desktop-options .red-text {
  color: #dc2626;
}

.desktop-options .feature-cell {
  text-align: left;
  font-size: 14px;
  padding: 15px 20px;
}

.desktop-options .subtitle {
  font-size: 11px;
  font-weight: normal;
  font-style: italic;
  display: block;
  margin-top: 5px;
}

.desktop-options .checkmark-cell {
  padding: 15px;
}

.desktop-options .checkmark {
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}

.desktop-options .checkmark.navy {
  background-color: #001d4c;
  color: white;
}

.desktop-options .checkmark.gold {
  background-color: #bc9963;
  color: #001d4c;
}

.desktop-options .membership-cell {
  font-size: 14px;
  font-weight: bold;
  padding: 15px;
}

.desktop-options .see-below {
  font-size: 11px;
  font-weight: normal;
  display: block;
  margin-top: 5px;
}

.desktop-options .text-cell {
  font-size: 12px;
  font-weight: bold;
  padding: 15px;
  line-height: 1.4;
}

/* Footer Text */
.desktop-options .footer-text {
  background-color: #bc9963;
  padding: 30px;
  margin-top: 0;
  text-align: center;
  border: 2px solid #000;
  border-top: none;
}

.desktop-options .footer-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #001d4c;
}

.desktop-options .footer-text p:last-child {
  margin-bottom: 0;
}


/* =====================
   MOBILE PROGRAM OPTIONS
   ===================== */

/* Tab Styles */
.mobile-options .tab {
  overflow: hidden;
  border-bottom: 2px solid #001d4c;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
}

.mobile-options .tab button {
  background-color: #f1f1f1;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 8px;
  transition: 0.3s;
  font-size: 11px;
  font-weight: bold;
  color: #333;
  flex: 1;
  min-width: 100px;
  border-right: 1px solid #ccc;
}

.mobile-options .tab button:last-child {
  border-right: none;
}

.mobile-options .tab button:hover {
  background-color: #ddd;
}

.mobile-options .tab button.active {
  background-color: #001d4c;
  color: white;
}

/* Tab Content */
.mobile-options .tabcontent {
  display: none;
  padding: 15px 0;
  background-color: #fff;
}

/* Pricing Table */
.mobile-options .pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 10px;
}

.mobile-options .pricing-table th,
.mobile-options .pricing-table td {
  border: 1px solid #000;
  padding: 8px 5px;
  text-align: center;
  vertical-align: middle;
}

/* Header Styles */
.mobile-options .pricing-table thead th {
  font-size: 11px;
  font-weight: bold;
  padding: 10px 5px;
  line-height: 1.2;
}

.mobile-options .header-subtitle {
  font-size: 9px;
  font-weight: normal;
}

.mobile-options .header-left {
  background-color: #001d4c;
  color: white;
  width: 28%;
}

.mobile-options .header-basic {
  background-color: #ffffff;
  color: #001d4c;
  width: 24%;
}

.mobile-options .header-essential {
  background-color: #001d4c;
  color: white;
  width: 24%;
}

.mobile-options .header-complete {
  background-color: #bc9963;
  color: #001d4c;
  width: 24%;
}

/* Cell Background Colors */
.mobile-options .basic-bg {
  background-color: #fff;
}

.mobile-options .essential-bg {
  background-color: #001d4c;
  color: white;
}

.mobile-options .complete-bg {
  background-color: #bc9963;
  color: #001d4c;
}

.mobile-options .gold-bg {
  background-color: #bc9963;
  color: #001d4c;
}

/* Cell Types */
.mobile-options .label-cell {
  text-align: left;
  font-size: 10px;
  font-weight: bold;
  padding: 8px 10px;
  line-height: 1.3;
}

.mobile-options .price-cell {
  font-size: 18px;
  font-weight: bold;
  padding: 10px 5px;
}

.mobile-options .grant-cell {
  font-size: 12px;
  padding: 8px 5px;
}

.mobile-options .red-text {
  color: #dc2626;
}

.mobile-options .feature-cell {
  text-align: left;
  font-size: 10px;
  padding: 8px 10px;
  line-height: 1.3;
}

.mobile-options .subtitle {
  font-size: 8px;
  font-weight: normal;
  font-style: italic;
  display: block;
  margin-top: 3px;
}

.mobile-options .checkmark-cell {
  padding: 8px 5px;
}

.mobile-options .checkmark {
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
}

.mobile-options .checkmark.navy {
  background-color: #001d4c;
  color: white;
}

.mobile-options .checkmark.gold {
  background-color: #bc9963;
  color: #001d4c;
}

.mobile-options .membership-cell {
  font-size: 9px;
  font-weight: bold;
  padding: 8px 5px;
  line-height: 1.3;
}

.mobile-options .see-below {
  font-size: 8px;
  font-weight: normal;
  display: block;
  margin-top: 3px;
}

.mobile-options .text-cell {
  font-size: 9px;
  font-weight: bold;
  padding: 8px 5px;
  line-height: 1.3;
}

/* Footer Text */
.mobile-options .footer-text {
  background-color: #bc9963;
  padding: 15px;
  margin-top: 0;
  text-align: center;
  border: 1px solid #000;
  border-top: none;
}

.mobile-options .footer-text p {
  margin-bottom: 10px;
  line-height: 1.5;
  color: #001d4c;
  font-size: 10px;
}

.mobile-options .footer-text p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for very small screens */
@media (max-width: 480px) {
  .mobile-options .pricing-table {
    font-size: 9px;
  }

  .mobile-options .pricing-table thead th {
    font-size: 10px;
    padding: 8px 3px;
  }

  .mobile-options .checkmark {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 16px;
  }

  .mobile-options .price-cell {
    font-size: 16px;
  }
}

/* White background override for specific rows */
.white-bg {
  background-color: #ffffff !important;
  color: #001d4c !important;
}

/* Stack tab buttons vertically on very small screens */
@media (max-width: 480px) {
  .mobile-options .tab {
    flex-direction: column;
    min-width: 100%;
  }

  .mobile-options .tab button {
    border-right: none;
    border-bottom: 1px solid #ccc;
    width: 100%;
    text-align: center;
  }

  .mobile-options .tab button:last-child {
    border-bottom: none;
  }
}
