| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- .modal-overlay {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.5);
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 1000;
- }
-
- .modal-container {
- background: white;
- border-radius: 8px;
- width: 500px;
- max-width: 90vw;
- max-height: 80vh;
- overflow: auto;
- box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
- }
-
- .modal-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 20px 24px;
- border-bottom: 1px solid #e0e0e0;
- }
-
- .modal-header h2 {
- margin: 0;
- font-size: 1.5rem;
- font-weight: 500;
- }
-
- .modal-content {
- padding: 24px;
- }
-
- .full-width {
- width: 100%;
- margin-bottom: 20px;
- }
-
- .modal-actions {
- display: flex;
- justify-content: flex-end;
- gap: 12px;
- margin-top: 24px;
- }
-
- mat-spinner {
- display: inline-block;
- margin-right: 8px;
- }
|