/* Settings Page Styles */

.settings-container {
  max-width: 600px;
}

.settings-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.settings-section h2 {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.settings-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.settings-form .btn {
  align-self: flex-start;
}

/* Verification Badge */
.verification-badge {
  display: inline-block;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

.verification-badge.verified {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

.verification-badge.unverified {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

/* Form Messages */
.form-message {
  font-size: 14px;
  margin-left: 12px;
}

.form-message.success {
  color: #28a745;
}

.form-message.error {
  color: #dc3545;
}

/* Subscription Info */
.subscription-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.current-plan {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-label {
  color: #888;
}

.plan-name {
  font-size: 20px;
  font-weight: 600;
  color: #0088ff;
}

.plan-limits {
  display: flex;
  gap: 32px;
}

.limit-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.limit-label {
  color: #888;
  font-size: 13px;
}

.limit-value {
  font-size: 16px;
  font-weight: 500;
}

/* Danger Zone */
.danger-zone {
  border-color: rgba(220, 53, 69, 0.3);
}

.danger-zone h2 {
  color: #dc3545;
}

.danger-zone p {
  color: #888;
  font-size: 14px;
  margin-bottom: 16px;
}

.btn-danger {
  background: #dc3545;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-danger:hover {
  background: #c82333;
}

.btn-danger:disabled {
  background: #666;
  cursor: not-allowed;
}

.btn-danger-outline {
  background: transparent;
  color: #dc3545;
  border: 1px solid #dc3545;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-danger-outline:hover {
  background: rgba(220, 53, 69, 0.1);
}

.btn-danger-outline:disabled {
  color: #666;
  border-color: #666;
  cursor: not-allowed;
}

/* Subscription Actions */
.subscription-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Subscription Status */
.subscription-status {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  background: rgba(255, 193, 7, 0.1);
}

.status-canceling {
  color: #ffc107;
}

/* Modal overrides for delete */
#deleteModal .modal-content p {
  color: #888;
  margin-bottom: 20px;
}
