.modal-overlay {
            /* position: absolute; */
            position: fixed;
            /* top: 50%; */
            left: 0;
            right: 0;
           /*  bottom: 50%; */
           bottom: 0px;
            background-color: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000000;
            animation: fadeIn 0.3s ease-out;
        }
        
        .modal-content {
            background: white;
            width: 40%;
            max-width: 700px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
           /*  padding: 30px; */
            position: relative;
            animation: slideUp 0.3s ease-out;
        }
        
        .modal-header {
            text-align:center;
            padding-bottom: 15px;
            margin-bottom: 20px;
        }
        
        .modal-header h2 {
            color: #000;
            font-size: 20px;
            margin: 0;
        }
        
        .modal-body {
            padding: 0 25px;
            color: #333;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .modal-body p {
            margin-bottom: 15px;
            text-indent: 2em;
        }
        
        .highlight {
            color: #e74c3c;
            font-weight: bold;
        }
        
        .link {
            color: #1e5ba8;
            text-decoration: none;
        }
        
        .link:hover {
            text-decoration: underline;
        }
        
        .modal-footer {
            text-align: center;
        }
        
        .confirm-btn {
            background-color: #6580ec;
            color: white;
            border: none;
            padding: 10px 30px;
            border-radius: 4px;
            font-size: 12px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-bottom: 10px;
        }
        
        .confirm-btn:hover {
            background-color: #2a4f8a;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            .modal-content {
                width: 95%;
                padding: 20px;
            }
        }
        .button-divider {
            height: 3px;
            background-color: #6580ec;
            margin: 20px 0;
        }