body {
            
            margin: 0;
            padding: 0;
            background: #f5f5f5;
        }
.popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }
.popup-content {
            background: #1c252e;
            color: white;
            padding: 20px;
            text-align: center;
            border-radius: 8px;
            /* max-width: 900px;*/
            width: 90%;
            min-height:500px;

            display: flex;
            align-items: center;
            justify-content: center;
      
        }
.popup-content h1 {
                margin-bottom: 10px;
            }
.popup-content p {
                margin: 10px 0;
            }
.confirmation-text {
            margin: 20px 0;
            font-size: 28px;
            font-weight: bold;
            line-height: 30px;
            padding-bottom:20px;
        }
.buttons button {
                padding: 10px 20px;
                font-size: 16px;
                border: none;
                border-radius: 5px;
                cursor: pointer;
            }
#confirm-yes {
            /*background: #4caf50;*/
            color: white;
        }
#confirm-no {
           /* background: #f44336;*/
            color: white;
        }
.disclaimer {
            font-size: 12px;
            margin-top: 20px;
        }

