.support-container {
      max-width: 1200px;
      margin: 120px auto 40px auto;
      padding: 0 20px;
    }

    .support-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
    }

    .support-header h1 {
      font-size: 24px;
      margin: 0;
      font-weight: 500;
    }

    .support-table-wrapper {
      background: rgba(20, 20, 30, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      overflow: hidden;
    }

    .support-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    .support-table th,
    .support-table td {
      padding: 16px 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .support-table th {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 600;
    }

    .support-table td {
      font-size: 14px;
      font-weight: 500;
    }

    .status-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .status-otwarte {
      background: rgba(26, 43, 86, 0.5);
      color: #7b9fed;
      border-color: rgba(123, 159, 237, 0.3);
    }

    .status-zamknięte {
      background: rgba(86, 26, 26, 0.5);
      color: #ed7b7b;
      border-color: rgba(237, 123, 123, 0.3);
    }

    .status-w-trakcie {
      background: rgba(86, 75, 26, 0.5);
      color: #edd17b;
      border-color: rgba(237, 214, 123, 0.3);
    }

    .form-section {
      margin-bottom: 30px;
    }

    .form-section h3 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #fff;
    }

    .form-input,
    .form-textarea {
      width: 100%;
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #fff;
      padding: 15px;
      border-radius: 6px;
      font-family: inherit;
      font-size: 14px;
      box-sizing: border-box;
      transition: border-color 0.2s;
    }

    .form-input:focus,
    .form-textarea:focus {
      outline: none;
      border-color: rgba(255, 255, 255, 0.3);
    }

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

    .category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 15px;
    }

    .category-btn {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 15px;
      border-radius: 6px;
      color: rgba(255, 255, 255, 0.7);
      cursor: pointer;
      font-family: inherit;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.2s;
      text-align: center;
    }

    .category-btn:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .category-btn.active {
      background: rgba(139, 92, 246, 0.15);
      border-color: #8b5cf6;
      color: #b99bf8;
    }

    .btn-submit-pink {
      background: #f43f5e;
      color: white;
      border: none;
      padding: 14px 30px;
      border-radius: 4px;
      font-weight: 600;
      cursor: pointer;
      font-family: inherit;
      font-size: 15px;
      transition: background 0.2s;
      float: right;
    }

    .btn-submit-pink:hover {
      background: #e11d48;
    }

    .btn-attachment {
      background: rgba(255, 255, 255, 0.05);
      color: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 14px 20px;
      border-radius: 4px;
      font-weight: 500;
      cursor: pointer;
      font-family: inherit;
      font-size: 14px;
      transition: all 0.2s;
      display: flex;
      align-items: center;
    }

    .btn-attachment:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .support-alert {
      display: none;
      padding: 15px;
      border-radius: 6px;
      margin-bottom: 20px;
      font-weight: 500;
      font-size: 14px;
    }

    .support-alert.error {
      display: block;
      background: rgba(220, 38, 38, 0.1);
      border: 1px solid rgba(220, 38, 38, 0.3);
      color: #fca5a5;
    }

    .attachment-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.1);
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.8);
      margin-right: 8px;
    }

    .btn-view {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      padding: 6px 12px;
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      font-size: 12px;
      transition: background 0.2s;
    }

    .btn-view:hover {
      background: rgba(255, 255, 255, 0.1);
    }