64 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| .modal-overlay {
 | |
|     position: fixed;
 | |
|     top: 0;
 | |
|     left: 0;
 | |
|     width: 100%;
 | |
|     height: 100%;
 | |
|     background-color: rgba(0, 0, 0, 0.5);
 | |
|     display: flex;
 | |
|     justify-content: center;
 | |
|     align-items: center;
 | |
|   }
 | |
|   
 | |
|   .modal {
 | |
|     background-color: #fff;
 | |
|     padding: 20px;
 | |
|     border-radius: 8px;
 | |
|   }
 | |
|   
 | |
|   .modal-content {
 | |
|     margin-top: 20px;
 | |
|   }
 | |
|   
 | |
|   .close {
 | |
|     position: absolute;
 | |
|     top: 10px;
 | |
|     right: 10px;
 | |
|     cursor: pointer;
 | |
|     font-size: 20px;
 | |
|   }
 | |
|   
 | |
|   .close:hover {
 | |
|     color: red;
 | |
|   }
 | |
|   .popup {
 | |
|     position: fixed;
 | |
|     top: 0;
 | |
|     left: 0;
 | |
|     width: 100%;
 | |
|     height: 100%;
 | |
|     background-color: rgba(0, 0, 0, 0.5);
 | |
|     display: flex;
 | |
|     justify-content: center;
 | |
|     align-items: center;
 | |
|   }
 | |
|   
 | |
|   .popup-content {
 | |
|     background-color: #fff;
 | |
|     padding: 20px;
 | |
|     border-radius: 8px;
 | |
|     width: 400px; /* Adjust width as needed */
 | |
|   }
 | |
|   
 | |
|   .close {
 | |
|     position: absolute;
 | |
|     top: 10px;
 | |
|     right: 10px;
 | |
|     cursor: pointer;
 | |
|     font-size: 20px;
 | |
|   }
 | |
|   
 | |
|   .close:hover {
 | |
|     color: red;
 | |
|   }
 | |
|    |