﻿.toast-no-icon {
    background-image: none !important;
    padding-left: 15px !important; /* remove space reserved for icon */
}

.toast-close-button {
    top: -10px !important; /* move DOWN */
    right: -2px !important; /* move LEFT (smaller = further left) */
    font-size: 36px !important;
    /*font-size: 28px !important;*/
    line-height: 1 !important;
}

.toast-info {
    background-color: white !important;
}

.toast-no-icon:before {
    content: none !important;
    display: none !important;
}

/* Toastr vertical centering */
#toast-container.toast-center-center {
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    right: auto;
}

    #toast-container.toast-center-center > div {
        margin: 0 auto;
        top: 0;
    }

/* Static soft green glow - always visible */
.btn-green-glow {
    box-shadow: 0 0 8px rgba(115, 168, 57, 0.4), 0 0 12px rgba(115, 168, 57, 0.3);
    border: 1px solid rgba(115, 168, 57, 0.5);
}

    .btn-green-glow:hover {
        box-shadow: 0 0 12px rgba(115, 168, 57, 0.6), 0 0 18px rgba(115, 168, 57, 0.4);
    }

    .btn-green-glow:focus {
        outline: none;
        box-shadow: 0 0 12px rgba(115, 168, 57, 0.6), 0 0 18px rgba(115, 168, 57, 0.4);
    }
