.toast {
    position: fixed;
    top: 75px;
    right: 20px;
    margin: 0;
    z-index: 9999;
    overflow: hidden;

    background: rgba(210, 126, 0, 1);
    height: auto;
    width: max-content;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(56,56,56,0.8);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#toastTitle {
    width: 100%;
    text-align: center;
    background: rgba(255, 153, 0, 1);
    padding: 4px 12px;
    font-size: 16px;
}

#toastMessage {
    width: 100%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toast p {
    font-size: 14px;
    margin-right: 12px;
}