.license-page {
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: var(--surface-card, #fff);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 20px;
  max-width: 1200px !important;
  border: 1px solid var(--surface-border, #ddd);
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--surface-border, #eaeaea);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-subtitle {
  color: var(--text-color-secondary, #666);
  font-size: 0.9rem;
}

.card-body {
  padding: 1.5rem;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.license-status {
  background-color: var(--surface-section, var(--surface-card));
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--surface-border);
}

.license-status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.license-status-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.license-key-info {
  margin-bottom: 1rem;
}

.license-key {
  font-family: monospace;
  background-color: var(--surface-overlay);
  padding: 0.75rem;
  border-radius: 4px;
  margin-top: 0.25rem;
  border: 1px solid var(--surface-border);
  color: var(--text-color);
}

.license-key:hover {
  background-color: var(--surface-hover);
}

.license-expiry {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  color: var(--text-color-secondary, #666);
}

.license-limits {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--surface-border, #eaeaea);
}

.limits-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.limits-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.limits-list li {
  margin-bottom: 0.25rem;
}

.license-form {
  margin-top: 2rem;
}

.license-field {
  margin-bottom: 1rem;
}

.license-input {
  width: 100%;
  display: block;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid var(--surface-border, #ced4da);
  border-radius: 4px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  min-height: 40px;
}

.license-actions {
  display: flex;
  margin-top: 1rem;
}

.pricing-section {
  background-color: var(--surface-card, #fff);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--surface-border, #ddd);
}

.pricing-header {
  margin-bottom: 1rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: var(--text-color-secondary, #666);
  font-size: 0.9rem;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.pricing-card {
  background-color: var(--surface-card, #fff);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 20px;
  width: calc(33.33% - 15px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--surface-border, #ddd);
}

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

.pricing-card.highlight {
  border: 2px solid #3498db;
  position: relative;
}

.pricing-card-header {
  padding: 1.5rem;
  padding-top: 2.5rem;
  border-bottom: 1px solid var(--surface-border, #eaeaea);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-plan-name {
  font-size: 1.2rem;
  font-weight: 600;
}

.pricing-plan-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.pricing-plan-price .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color, #333);
}

.pricing-plan-price .duration {
  font-size: 0.8rem;
  color: var(--text-color-secondary, #666);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 20px;
  background-color: #3498db;
  color: white;
  padding: 5px 10px;
  font-size: 0.7rem;
  border-radius: 0 0 4px 4px;
}

.highlight .pricing-badge {
  background-color: #3498db;
}

.pricing-card-body {
  padding: 1.5rem;
}

.pricing-features {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.pricing-features li {
  margin-bottom: 0.5rem;
}

.pricing-features li i {
  margin-right: 0.5rem;
}

.pricing-features li i.pi-check-circle {
  color: #3498db;
}

.pricing-features li i.pi-times-circle {
  color: #f44336;
}

.pricing-card-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--surface-border, #eaeaea);
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-card-footer button {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
}

.pricing-card-footer button.p-button-primary {
  background-color: #007bff;
  color: #fff;
}

.pricing-card-footer button.p-button-outlined {
  background-color: transparent;
  color: #666;
  border: 1px solid #666;
}

/* Responsive styles */
@media screen and (max-width: 1200px) {
  .pricing-card {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
  }

  .pricing-card {
    width: 100%;
  }

  .pricing-card-header {
    flex-direction: column;
    text-align: center;
  }

  .pricing-plan-price {
    align-items: center;
    margin-top: 10px;
  }
}

.license-status-badge {
  font-weight: 600;
  font-size: 0.9rem;
}

.license-status-badge.p-badge-info {
  background-color: #3498db;
  color: white;
}

.check-icon {
  color: #3498db;
  font-size: 1.5rem;
}

.license-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

iframe {
  background-color: transparent;
} 