TRM-coding | 267df74 | 2025-06-15 16:05:28 +0800 | [diff] [blame^] | 1 | .admin-container { |
| 2 | padding: 24px; |
| 3 | background-color: #fff; |
| 4 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; |
| 5 | } |
| 6 | |
| 7 | .admin-title { |
| 8 | font-size: 24px; |
| 9 | color: #e61515; |
| 10 | margin-bottom: 16px; |
| 11 | } |
| 12 | |
| 13 | .admin-table { |
| 14 | width: 100%; |
| 15 | border-collapse: collapse; |
| 16 | } |
| 17 | |
| 18 | .admin-table th, |
| 19 | .admin-table td { |
| 20 | border: 1px solid #f0f0f0; |
| 21 | padding: 12px 16px; |
| 22 | text-align: left; |
| 23 | } |
| 24 | |
| 25 | .admin-table th { |
| 26 | background-color: #fafafa; |
| 27 | color: #333; |
| 28 | font-weight: 500; |
| 29 | } |
| 30 | |
| 31 | .status { |
| 32 | font-weight: 500; |
| 33 | text-transform: capitalize; |
| 34 | } |
| 35 | |
| 36 | .status.pending { |
| 37 | color: #f29900; |
| 38 | } |
| 39 | |
| 40 | .status.approved { |
| 41 | color: #28a745; |
| 42 | } |
| 43 | |
| 44 | .status.banned { |
| 45 | color: #d73a49; |
| 46 | } |
| 47 | |
| 48 | .btn { |
| 49 | padding: 6px 12px; |
| 50 | margin-right: 8px; |
| 51 | border: none; |
| 52 | border-radius: 4px; |
| 53 | cursor: pointer; |
| 54 | font-size: 14px; |
| 55 | } |
| 56 | |
| 57 | .btn-approve { |
| 58 | background-color: #e61515; |
| 59 | color: #fff; |
| 60 | } |
| 61 | |
| 62 | .btn-ban { |
| 63 | background-color: #f5f5f5; |
| 64 | color: #333; |
| 65 | } |