/* Wrapper for the subscription section */
.flhip-subscription-wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  color: #000000; /* Black text */
}

/* Table styling */
#flhip-subscription-table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}

#flhip-subscription-table th,
#flhip-subscription-table td {
  padding: 8px;
  border: 1px solid #464646; /* Grey border */
  text-align: left;
}

#flhip-subscription-table th {
  background: #FFF0F0; /* Pale Red */
  color: #FF0000; /* Prime Red */
}

.national-plan td {
  background: #FFF0F0; /* Pale Red */
  color: #464646; /* Grey text */
  font-weight: bold;
}

.plan-separator td {
  text-align: center;
  font-style: italic;
  color: #464646; /* Grey text */
  background: #FFFFFF; /* White background */
}

/* Hover effects for rows */
#flhip-subscription-table tr:hover {
  background: #FF0000; /* Prime Red */
  color: #FFFFFF; /* White text */
}

/* Styling for the summary section */
.subscription-summary {
  margin-top: 20px;
  text-align: center;
  border: 1px solid #464646; /* Grey border */
  padding: 10px;
  background: #FFF0F0; /* Pale Red */
}

.subscription-summary .selected-regions {
  margin-bottom: 10px;
  color: #464646; /* Grey text */
}

.subscription-summary .total-price {
  font-weight: bold;
  color: #FF0000; /* Prime Red */
}

/* PayPal button styling */
.paypal-button {
  display: inline-block;
  padding: 10px 20px;
  background: #FF0000; /* Prime Red */
  color: #FFFFFF; /* White text */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.paypal-button:hover {
  background: #B40000; /* Hover Red */
}

 /* Grid layout for zones */
.flhip-grid-zones-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.flhip-zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.flhip-zone-card {
    display: block;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background-color: #fff;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.flhip-zone-card:hover {
    border-color: #FF0000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flhip-zone-subscribed {
    background-color: #FFF0F0;
    border-color: #FF0000;
}

.flhip-zone-info {
    display: flex;
    flex-direction: column;
    padding-left: 30px;
}

.flhip-zone-name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.flhip-zone-price {
    color: #666;
}

.flhip-national-option {
    margin-bottom: 20px;
    border: 2px solid #FF0000;
    border-radius: 8px;
    background-color: #FFF0F0;
}

.flhip-national-option .flhip-zone-card {
    border: none;
    background-color: transparent;
}

.flhip-subscribed-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #FF0000;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.flhip-summary {
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
}

#flhip-total-price {
    font-weight: bold;
    color: #FF0000;
    font-size: 20px;
    margin-top: 10px;
}

.flhip-actions {
    text-align: center;
    margin-top: 20px;
}

.flhip-zone-checkbox, .flhip-national-checkbox {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
}

#flhip-zones-subscribe {
    background-color: #FF0000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#flhip-zones-subscribe:hover {
    background-color: #cc0000;
}

#flhip-zones-subscribe:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

#flhip-zones-message {
    margin-top: 15px;
}

.flhip-error {
    color: #FF0000;
    background-color: #FFF0F0;
    border: 1px solid #FF0000;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}

.flhip-success {
    color: #007700;
    background-color: #F0FFF0;
    border: 1px solid #007700;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}

.flhip-info {
    color: #0077FF;
    background-color: #F0F8FF;
    border: 1px solid #0077FF;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}
        