/* /src/css/admin-waiting-page.css */ .admin-waiting-container { max-width: 1200px; margin: 40px auto; padding: 40px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; background-color: #f4f6f8; border-radius: 16px; } .admin-waiting-container .page-title { font-size: 32px; font-weight: 700; color: #333d4b; margin-bottom: 30px; text-align: center; } .section-card { background-color: #ffffff; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); } .table-container table { width: 100%; border-collapse: collapse; font-size: 15px; } .table-container th, .table-container td { padding: 12px 16px; text-align: left; border-bottom: 1px solid #e5e8eb; vertical-align: middle; } .table-container th { background-color: #f9fafb; color: #505a67; font-weight: 600; } .table-container tr:last-child td { border-bottom: none; } .table-container tr:hover { background-color: #f4f6f8; } .btn { padding: 8px 16px; font-size: 15px; font-weight: 600; border-radius: 8px; border: none; cursor: pointer; transition: background-color 0.2s; margin-right: 8px; } .btn-primary { background-color: #3182F6; color: #ffffff; } .btn-primary:hover { background-color: #1B64DA; } .btn-danger { background-color: #e53e3e; color: white; } .btn-danger:hover { background-color: #c53030; }