.confirm-alert-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.5);display:flex;justify-content:center;align-items:center;z-index:10000}.confirm-alert-overlay .confirm-alert{min-width:300px;max-width:30%;background-color:#fff;padding:20px;border-radius:8px;box-shadow:0 4px 10px rgba(0,0,0,.1);text-align:center}.confirm-alert-overlay .confirm-alert p{margin-bottom:20px;font-size:20px}.confirm-alert-overlay .confirm-alert .confirm-alert-buttons{width:100%;display:flex;gap:15px}.confirm-alert-overlay .confirm-alert .confirm-alert-buttons button{width:50%;padding:10px 20px;border:none;border-radius:4px;cursor:pointer;font-size:14px}.confirm-alert-overlay .confirm-alert .confirm-alert-buttons .confirm-btn{background-color:#4285f4;color:#fff}.confirm-alert-overlay .confirm-alert .confirm-alert-buttons .cancel-btn{background-color:#c10000;color:#fff}.process-alert{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:rgba(0,0,0,.8);display:flex;justify-content:center;align-items:center;z-index:100001}.process-alert .loader-container{display:flex;flex-direction:column;align-items:center}.process-alert .loader-container .spinner{border:4px solid hsla(0,0%,100%,.2);border-top-color:#fff;border-radius:50%;width:50px;height:50px;animation:spin 1s linear infinite}.process-alert .loader-container p{margin-top:20px;color:#fff;font-size:18px;font-weight:#fff;text-align:center}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.message-alert-overlay{position:fixed;top:20px;right:20px;z-index:9999;display:flex;justify-content:flex-end;align-items:flex-start;width:100%;pointer-events:none}.message-alert-overlay .message-alert{background-color:#34a853;color:#fff;padding:10px 20px;border-radius:5px;box-shadow:0 2px 10px rgba(0,0,0,.2);font-size:14px;display:flex;align-items:center;justify-content:space-between;pointer-events:auto;animation:slideIn .5s ease-out}.message-alert-overlay .message-alert p{font-size:18px;font-weight:700}.message-alert-overlay .close-btn{background:none;border:none;color:#fff;font-size:20px;cursor:pointer;margin-left:10px}.message-alert-overlay .close-btn:hover{color:#c10000}@keyframes slideIn{0%{opacity:0;transform:translateX(100%)}to{opacity:.9;transform:translateX(0)}}