/* Single View Styles */
.whmcs-single-container {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.whmcs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
}

.whmcs-title {
  margin: 0;
  font-size: 24px;
  color: #333;
}

.whmcs-badge {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.whmcs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.whmcs-row {
  display: flex;
  flex-direction: column;
}

.whmcs-label {
  font-weight: 600;
  color: #777;
  font-size: 13px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.whmcs-value {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

/* Minimal Table (No Grid Lines) */
.whmcs-clean-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.whmcs-clean-table th {
  text-align: left;
  padding: 15px 0;
  border-bottom: 2px solid #eee;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  font-size: 13px;
}

.whmcs-clean-table td {
  padding: 15px 0;
  border-bottom: 1px solid #f5f5f5; /* Very subtle or none */
  color: #444;
}

.whmcs-clean-table tr:last-child td {
  border-bottom: none;
}

/* Ticket Replies */
.ticket-reply {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 6px;
  background: #f9f9f9;
}

.ticket-reply.admin-reply {
  background: #eef9ff;
  border-left: 4px solid #0073aa;
}

.ticket-reply.user-reply {
  background: #fff;
  border: 1px solid #eee;
}

.reply-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 13px;
  color: #777;
}

.reply-content {
  line-height: 1.6;
}

/* Status Colors */
.status-active,
.status-paid,
.status-open {
  /* background: #e7f7ed; */
  color: #28a745;
}

.status-pending,
.status-unpaid {
  /* background: #fff8e1; */
  color: #ffc107;
}

.status-cancelled,
.status-terminated,
.status-closed {
  /* background: #f8f9fa; */
  color: #6c757d;
}
