.toast {
    position: fixed;
    left: 50%;
    width: 311px;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    z-index: 10000;
    background: var(--Backgrounds-Off-White, #F9F9F9);
    box-shadow: 0px 0px 6px 0px rgba(24, 24, 24, 0.18);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.toast-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
}

.toast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.toast-title {
    color: var(--Text-Charcoal, #232323);
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    flex-grow: 1;
    text-align: left;
}

.toast-close-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-body {
    align-self: stretch;
    color: var(--Text-Dark-Grey, #464646);
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
}

.toast:focus {
    outline: 3px solid #009EB3;
    outline-offset: 0;
}
