.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(100, 0, 0, 0.25);
      border: 1px solid rgba(200, 50, 50, 0.4);
      border-radius: 8px;
      padding: 14px 18px;
      color: rgba(255,255,255,0.85);
      font-size: 13px;
      line-height: 1.6;
    }
    .support-alert.error::before {
      content: 'BŁĄD';
      display: block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.2px;
      color: #e05555;
      margin-bottom: 6px;
      text-transform: uppercase;
    }

    .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);
    }

    .category-btn--recruitment {
      background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.08) 100%);
      border: 1px solid rgba(251, 191, 36, 0.35);
      color: #fbbf24;
      position: relative;
      overflow: hidden;
      grid-column: 1 / -1;
    }

    .category-btn--recruitment::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -60%;
      width: 40%;
      height: 200%;
      background: linear-gradient(105deg, transparent 40%, rgba(255, 215, 100, 0.15) 50%, transparent 60%);
      transform: skewX(-15deg);
      animation: shine-btn 3s ease-in-out infinite;
    }

    @keyframes shine-btn {
      0%   { left: -60%; }
      60%  { left: 130%; }
      100% { left: 130%; }
    }



    .category-btn--recruitment:hover {
      background: linear-gradient(135deg, rgba(251, 191, 36, 0.18) 0%, rgba(245, 158, 11, 0.14) 100%);
      border-color: rgba(251, 191, 36, 0.65);
      color: #fde68a;
      box-shadow: 0 0 18px rgba(251, 191, 36, 0.18);
    }

    .category-btn--recruitment.active {
      background: linear-gradient(135deg, rgba(251, 191, 36, 0.22) 0%, rgba(245, 158, 11, 0.18) 100%);
      border-color: #fbbf24;
      color: #fde68a;
      box-shadow: 0 0 24px rgba(251, 191, 36, 0.25);
    }