File size: 330 Bytes
79c74f1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
def get_styles():
    return """
    .popup-container {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        border: 2px solid #ccc;
        border-radius: 10px;
        padding: 20px;
        width: 400px;
        z-index: 1000;
    }
    """