/* =========================
   SUPPORT PAGE
   Multimedia Ads
========================= */

.support-page {
  padding: 80px 20px;
  background: #f9fafb;
}

.support-container {
  max-width: 1100px;
  margin: auto;
}

.support-header {
  text-align: center;
  margin-bottom: 50px;
}

.support-header h1 {
  font-size: 2.3rem;
  color: #0f172a;
  margin-bottom: 10px;
}

.support-header p {
  color: #475569;
  font-size: 1.05rem;
}

.ticket-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  padding: 40px 32px;
  margin-bottom: 40px;
}

.ticket-section h2 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: #0f172a;
}

.ticket-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 480px;
  margin: 0 auto;
}

.ticket-form input,
.ticket-form select,
.ticket-form textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 0.97rem;
}

.ticket-form textarea {
  min-height: 100px;
  resize: vertical;
}

.ticket-form button {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.ticket-form button:hover {
  opacity: 0.9;
}

.ticket-list-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  padding: 40px 32px;
}

.ticket-list-section h2 {
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: #0f172a;
}

.ticket-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.ticket-table th, .ticket-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  font-size: 0.97rem;
}

.ticket-table th {
  background: #f9fafb;
  color: #0f172a;
}

.ticket-status-open {
  color: #16a34a;
  font-weight: 600;
}
.ticket-status-closed {
  color: #e11d48;
  font-weight: 600;
}

@media (max-width: 900px) {
  .ticket-section, .ticket-list-section {
    padding: 24px 8px;
  }
}
