| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- .error{
- text-align: center;
- padding: 50px;
- font-family: Arial, sans-serif;
- color: #333;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- width: 50% !important;
- .error-icon {
- font-size: 3rem;
- color: #dc3545;
- margin-bottom: 0.3rem;
- }
- .error-title {
- font-size: 1.8rem;
- font-weight: 600;
- margin-bottom: 1rem;
- color: #212529;
- }
- .error-desc {
- font-size: 1rem;
- line-height: 1.6;
- margin-bottom: 2rem;
- opacity: 0.8;
- }
- .error-actions {
- display: flex;
- gap: 1rem;
- justify-content: center;
- }
- .btn {
- padding: 0.75rem 1.5rem;
- border-radius: 8px;
- border: none;
- font-weight: 500;
- cursor: pointer;
- transition: all 0.2s ease;
- }
- .btn-primary {
- background-color: #007bff;
- color: white;
- }
- .btn-primary:hover {
- background-color: #0056b3;
- }
- .btn-outline {
- background-color: transparent;
- border: 1px solid #ced4da;
- color: #495057;
- }
- .btn-outline:hover {
- background-color: #f1f3f5;
- }
- }
|