/* Toast Notifications */
.toast-container-custom {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1060;
}

.custom-toast {
    background: #fff;
    border-left: 5px solid #077c8c;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    margin-bottom: 10px;
}

.custom-toast.show { transform: translateX(0); }
.custom-toast.success { border-left-color: #28a745; }
.custom-toast.error { border-left-color: #dc3545; }

.toast-icon { font-size: 1.2rem; }
.success .toast-icon { color: #28a745; }
.error .toast-icon { color: #dc3545; }

.toast-msg { font-weight: 600; color: #333; font-size: 0.95rem; }

/* Trash Icon Hover Effect */
.bj-bookmark-wrapper .fa-trash-alt {
    color: #dc3545 !important;
    transition: transform 0.2s ease, color 0.2s ease;
}

.bj-bookmark-wrapper .fa-trash-alt:hover {
    transform: scale(1.2);
    color: #b02a37 !important;
}