
 
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f8;
    color: #1f2937;
  }
  
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Hero Section */
  .hero-section {
    background: linear-gradient(135deg, #4c6fff, #8f9df0);
    padding: 50px 25px;
    border-radius: 30px;
    text-align: center;
    color: white;
    margin: 40px 0 30px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
  }
  
  /* Stats Grid */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .stat-card {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .stat-icon {
    font-size: 2rem;
    color: #4c6fff;
    margin-bottom: 10px;
  }
  
  .stat-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  
  .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
  }
  
  /* Search & Filters */
  .search-filter-section {
    margin-bottom: 30px;
  }
  
  .search-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    background-color: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  
  .search-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 250px;
  }
  
  .filter-group {
    display: flex;
    gap: 10px;
  }
  
  .filter-dropdown {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: white;
    width: 150px;
  }
  
  /* Ticket List */
  .ticket-list-section {
    margin-bottom: 40px;
  }
  
  .ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .ticket-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .ticket-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .status-tag {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
    font-weight: bold;
  }
  
  .status-open {
    background-color: #4c6fff;
  }
  
  .status-resolved {
    background-color: #10b981;
  }
  
  .status-pending {
    background-color: #fbbf24;
  }
  
  .ticket-subject {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .ticket-details {
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
  }
  
  .priority-tag {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .priority-high {
    background-color: #ef4444;
    color: white;
  }
  
  .priority-medium {
    background-color: #f97316;
    color: white;
  }
  
  .priority-low {
    background-color: #10b981;
    color: white;
  }
  
  .view-details-btn {
    padding: 10px;
    background-color: #4c6fff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .view-details-btn:hover {
    background-color: #3b5bde;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .search-filter-wrapper {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .search-input, .filter-dropdown {
      width: 100%;
    }
  }
  .ticket-form-section {
    padding: 3rem 1.5rem;
    background-color: #f4f7fb;
    border-radius: 16px;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }
  
  .ticket-form-section .form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  
  .ticket-form-section .form-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
  }
  
  .ticket-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
  }
  
  .submit-btn {
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 0.9rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #1e40af;
  }
  
  .form-message {
    font-size: 0.95rem;
    font-weight: 500;
    color: #d32f2f;
    text-align: center;
  }
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f6f8;
  }
  
  .page-container {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .page-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .container-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }
  
  .info-box {
    background: white;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 22%;
    min-width: 250px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .info-box h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .info-box p {
    margin: 6px 0;
  }
  
  textarea {
    width: 100%;
    height: 80px;
    padding: 10px;
    margin-top: 10px;
    resize: vertical;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
  }
  
  button {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #0077cc;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #005fa3;
  }
  
  .social-icons a {
    font-size: 20px;
    margin-right: 15px;
    color: #333;
    text-decoration: none;
  }
  
  .social-icons a:hover {
    color: #0077cc;
  }
  
  .ai-text {
    font-style: italic;
    color: #666;
  }
  