* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

.list {
    list-style-type: none;
}

:root {
    --feedback-outline: #29abe2;
    --feedback-shadow: 0 0 0 3px rgba(41, 171, 226, 0.25);
}

button,
a,
[role="button"],
input,
select,
textarea {
    transition: background-color 120ms ease, color 120ms ease, border-color 120ms ease,
        box-shadow 120ms ease, transform 120ms ease, opacity 120ms ease;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.app-toast-container {
    position: fixed;
    top: 104px;
    left: 50%;
    z-index: 10002;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.app-toast {
    font-size: 20px;
    font-weight: 400;
    font-family: "Inter";
    line-height: 120%;
    letter-spacing: 0;
    color: #ffffff;
    min-width: 280px;
    max-width: 90vw;
    min-height: 74px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    background: #2a3647;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 200ms ease, transform 200ms ease;
}

.app-toast--success {
    background: #2a3647;
}

.app-toast--error {
    background: #c0392b;
}

.app-toast--visible {
    opacity: 1;
    transform: translateY(0);
}

.d-none {
    display: none !important;
}

@media (max-width: 820px) {
    .app-toast-container {
        top: 92px;
    }
}
