/* Empty State Notifications */
.empty-state-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: transparent;
    border: none;
    color: #444;
    text-align: center;
    gap: 20px;
    width: 100%;
    flex: 1;
    /* Take remaining space in flex container */
    box-sizing: border-box;
}

.empty-state-msg .empty-icon {
    font-size: 4rem;
    color: #222;
    filter: drop-shadow(0 0 15px rgba(100, 108, 255, 0.4));
    transition: transform var(--transition-normal);
}

.empty-state-msg:hover .empty-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(100, 108, 255, 0.6));
}

.empty-state-msg span {
    font-size: 1rem;
    font-style: italic;
    font-weight: 600;
    color: #555;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}