.enterprise-state-content {
  display: none;
}
.enterprise-state-content.active {
  display: block;
}

.enterprise-section {
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  background-color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.enterprise-info p {
  margin: 5px 0;
}

.status {
  color: #00c853;
  display: inline-flex;
  align-items: center;
}
.status-pending {
  color: #56b7e0;
  display: inline-flex;
  align-items: center;
}
.error {
  color: #f44336;
  display: inline-flex;
  align-items: center;
}

.status-icon {
  margin-right: 5px;
}

.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
}
.form-group input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}
.form-group .error-tip {
  color: #f44336;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.loading {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(38, 167, 241, 0.3);
  border-radius: 50%;
  border-top-color: #169bd5;
  animation: spin 1s ease-in-out infinite;
  margin-left: 8px;
  vertical-align: middle;
}
.btn:disabled {
  background-color: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
  color: #666;
}
.btn:disabled:hover {
  background-color: #ccc;
  border-color: #ccc;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
