    .overlay {width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); justify-content: center; align-items: center; display: none; position: fixed; top: 0; left: 0; z-index:9999; }
    .dialog { max-width: 74%; width: 300px; background: #fff; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); text-align: center; opacity: 0; transform: scale(0.7); transition: opacity 0.3s, transform 0.3s; overflow: hidden; }
    .dialog.show { opacity: 1; transform: scale(1); }
    .pushBtn { width: 100%; height: 48px; flex: 1; font-size: 16px; font-weight: bold; background-color: #ffffff; border: 0; }
    .line_1 { width: 100%; height: 1px; background-color: #eeeeee; }
    .line_2 { width: 1px; height: 48px; background-color: #eeeeee; }
    #alertMessage, #confirmMessage, #promptMessage, #notificationMessage { padding: 28px 24px 26px 24px; font-size: 16px; line-height: 26px; }
    #pushLoader { border: 6px solid #cccccc; border-top: 6px solid #111111; border-radius: 50%; width: 30px; height: 30px; animation: spin 0.7s linear infinite; }
    @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }