.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: #fff;
    z-index: 999;
}

.wrapper {
    flex: 1 0 auto;
}

.p-l-0px {
    padding-left: 0 !important;
}

.p-t-10px {
    padding-top: 10px !important;
}

.m-t-15px {
    margin-top: 15px !important;
}

header .title {
    font-size: 5em;
    text-align: center;
    margin: 0;
    margin-bottom: 24px;
    color: #fff;
}

header .sub-title {
    width: 100%;
    font-size: 20px;
    margin: 24px 0 32px;
    text-align: center;
    color: #fff;
}

header .github-items {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #000;
    background: rgba(0, 0, 0, 0.1);
}

main {
    padding: 20px 0;
}

main .opts {
    margin-bottom: 40px;
}

main .postions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

main .postions label {
    max-width: 60px;
    min-width: 50px;
}

main .switchs {
    justify-content: space-between;
}

main .btns,
main .switchs {
    display: flex;
    align-items: center;
}

main .btns {
    padding: 20px 0;
    margin-top: 11.5px;
    margin-bottom: 40px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

main .btns .btn {
    width: 180px;
    font-size: 22.4px;
    font-size: 1.4rem;
    border: none;
    cursor: pointer;
    outline: none;
    margin-bottom: 38px;
    color: #fff;
    transition: all 0.2s ease;
}

main .btns .btn:hover {
    transform: translateY(-4px);
}

main .btns .btn[data-type='text'] {
    background: #000;
    background: rgba(0, 0, 0, 0.9);
}

main .btns .btn[data-type='log'] {
    color: #333;
    background: #fffffc;
}

main .btns .btn[data-type='info'] {
    background: #2ca9e1;
}

main .btns .btn[data-type='success'] {
    background: #38b48b;
}

main .btns .btn[data-type='warn'] {
    background: #f89406;
}

main .btns .btn[data-type='error'] {
    background: #e9546b;
}

/* ─── Error toast: more prominent + ripple ring ─── */
.tata.error {
    background: #c0203a !important;
    border-left: 5px solid #ff6b82 !important;
    box-shadow:
        0 28px 42px 4px rgba(0, 0, 0, 0.22),
        0 12px 50px 10px rgba(0, 0, 0, 0.16) !important;
    overflow: visible !important;
}

/* ripple via ::after — transparent body, box-shadow expands outward past the toast */
.tata.error::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 3px;
    pointer-events: none;
    animation: tataErrorRipple 1s ease-out 0.35s both;
}

@keyframes tataErrorRipple {
    0% {
        box-shadow: 0 0 0 0px rgba(192, 32, 58, 0.72);
    }
    55% {
        box-shadow: 0 0 0 22px rgba(192, 32, 58, 0.18);
    }
    100% {
        box-shadow: 0 0 0 38px rgba(192, 32, 58, 0);
    }
}

@media (max-width: 600px) {
    main .postions {
        justify-content: flex-start;
    }
}
