/* Notyf custom styles (toastr-compatible) */
.notyf__toast {
    border: 2px solid #FFE58F;
    border-radius: 3px;
    box-shadow: none;
    padding: 0;
    min-width: 300px;
    max-width: 450px;
    position: relative;
}

.notyf__toast--error {
    background: var(--primary-color-1, #FFFFFF) !important;
    border-color: var(--attention, #E24E4E) !important;
}

.notyf__toast--error .notyf__message {
    color: var(--attention, #E24E4E);
}

.notyf__wrapper {
    padding: 20px 15px 20px 50px;
}

.notyf__icon {
    position: absolute;
    left: 13px;
    top: 18px;
    width: 24px;
    height: 24px;
}

.notyf__message {
    color: #262626;
    font-size: 14px;
    word-wrap: break-word;
}

.notyf__message strong {
    font-weight: 400;
    font-size: 16px;
}

.notyf__dismiss-btn {
    color: #262626;
    opacity: 0.8;
}

.notyf__dismiss-btn:hover {
    opacity: 1;
}

.toastr-icon {
    width: 24px;
    height: 24px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.toastr-icon-warning {
    background-image: url('/assets/toastr.png');
}

.toastr-icon-error {
    background-image: url('/assets/img/toastr_red.png');
}

/* 以下は利用していないが一応設定しておく */
.toastr-icon-success {
    background-image: url('/assets/toastr.png');
}

.toastr-icon-info {
    background-image: url('/assets/toastr.png');
}
