.ucc-notice {
    position: fixed;
    top: 60px;
    right: 20px;
    background: #32373c;
    color: #f1f1f1;
    padding: 10px 20px;
    border-radius: 3px;
    display: none;
    z-index: 99999;
    font-family: sans-serif;
    font-size: 13px;
}

.ucc-notice.success {
    background: #46b450;
}

.ucc-notice.error {
    background: #dc3232;
}

.ucc-notice.info {
    background: #00a0d2;
}

.ucc-loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.1);
    z-index: 99998;
}