/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    
  }
  
  /* PAGE TITLE */
  .ticket-title {
    
    padding-top: 120px;
    text-align: center;
  }
  .ticket-title h1 { font-size: 36px; }
  .ticket-title p { margin-top: 5px; color: #6b7280; }
  
  /* CREATE TICKET FORM */
  .create-ticket {
    width: 90%;
    max-width: 750px;
   background:rgb(58, 123, 136); 
    margin: 30px auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  }
  
  .create-ticket h2 {
    margin-bottom: 15px;
    color: #111827;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
  }
  
  input, textarea, select {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font-size: 15px;
  }
  
  textarea { height: 120px; }
  
  .submit-btn {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
  }
  
  /* FILTER BAR */
  .filters {
    width: 90%;
    margin: 30px auto;
    display: flex;
    gap: 15px;
  }
  
  .filters input, .filters select {
    padding: 12px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #d1d5db;
  }
  
  /* TICKET TABLE */
  .ticket-table {
    width: 100%;
    margin: auto;
  }
  
  .ticket-table h2 {
    margin-bottom: 10px;
    color: #111827;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
  }
  
  th {
    background: #111827;
    color: white;
    padding: 12px;
  }
  
  td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
  }
  
  tr:hover {
    background: #f9fafb;
  }
  
  /* RESPONSIVE MEDIA QUERY */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 65px; right: 0;
      width: 100%;
      background: #111827;
      text-align: center;
      padding: 20px 0;
      flex-direction: column;
    }
    .nav-links li {  }
    .menu-icon { display: block; }
    .nav-links.active { display: flex; }
  
    .filters { flex-direction: column; }
    table { font-size: 14px; }
  }
  
  